-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubstack_parser.gemspec
More file actions
24 lines (20 loc) · 982 Bytes
/
substack_parser.gemspec
File metadata and controls
24 lines (20 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |spec|
spec.name = "substack_parser"
spec.version = "0.0.1"
spec.authors = ["Mathew Thomas"]
spec.email = ["mathew@betacraft.com"]
spec.summary = %q{This gem is to help parse Substack exports.}
spec.homepage = "https://github.com/betacraft/substack_parser"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
spec.metadata["homepage_uri"] = "https://github.com/betacraft/substack_parser"
spec.metadata["source_code_uri"] = "https://github.com/betacraft/substack_parser"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency("csv", "~> 3.2")
spec.add_dependency("rubyzip", "~> 1.2.1")
end