You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

slack_mattermost_emoji.gemspec 1.2KB

1234567891011121314151617181920212223242526
  1. require_relative 'lib/slack_mattermost_emoji/version'
  2. Gem::Specification.new do |spec|
  3. spec.name = "slack_mattermost_emoji"
  4. spec.version = SlackMattermostEmoji::VERSION
  5. spec.authors = ["Dylan Baker"]
  6. spec.email = ["dylan@simulacrum.party"]
  7. spec.summary = %q{A tool for importing custom emoji from Slack into Mattermost}
  8. spec.homepage = "TODO: Put your gem's website or public repo URL here."
  9. spec.homepage = "https://git.simulacrum.party/simulacrumparty/slack_mattermost_emoji"
  10. spec.license = "MIT"
  11. spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
  12. spec.metadata["homepage_uri"] = spec.homepage
  13. spec.metadata["source_code_uri"] = spec.homepage
  14. # Specify which files should be added to the gem when it is released.
  15. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  16. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
  17. `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  18. end
  19. spec.bindir = "exe"
  20. spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  21. spec.require_paths = ["lib"]
  22. end