-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtorba.gemspec
More file actions
23 lines (20 loc) · 867 Bytes
/
torba.gemspec
File metadata and controls
23 lines (20 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |spec|
spec.name = "torba"
spec.version = "1.2.0"
spec.authors = ["Andrii Malyshko"]
spec.email = ["mail@nashbridges.me"]
spec.description = "Bundler for Sprockets"
spec.summary = spec.description
spec.homepage = "https://github.com/torba-rb/torba"
spec.license = "MIT"
spec.files = `git ls-files`.split($/).grep_v(%r{^test/})
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.bindir = "bin"
spec.require_paths = ["lib"]
spec.add_dependency "thor", ">= 0.19.1", "< 2"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.4"
spec.add_development_dependency "mocha"
spec.add_development_dependency "assert_dirs_equal", "~> 0.1"
end