-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathslack_export.gemspec
More file actions
27 lines (23 loc) · 1.14 KB
/
slack_export.gemspec
File metadata and controls
27 lines (23 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "slack_export/version"
Gem::Specification.new do |spec|
spec.name = "slack_export"
spec.version = SlackExport::VERSION
spec.authors = ["Michael Tucker"]
spec.email = ["mtucker@godaddy.com"]
spec.homepage = "https://github.com/mtuckergd/slack_export"
spec.summary = %q{Export private Slack channels}
spec.description = %q{Export private Slack channels in the standard Slack export format}
spec.license = "MIT"
spec.files = Dir[File.join("lib", "**", "*")]
spec.executables = Dir[File.join("bin", "**", "*")].map! { |f| f.gsub(/bin\//, "") }
spec.test_files = Dir[File.join("test", "**", "*"), File.join("spec", "**", "*"), File.join("features", "**", "*")]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "rest-client", "~> 2.0"
spec.add_runtime_dependency "rubyzip", "~> 1.0"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end