- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathparam_test.gemspec
More file actions
Latest commit
18 lines (16 loc) · 733 Bytes
/
Copy pathparam_test.gemspec
File metadata and controls
18 lines (16 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Gem::Specification.newdo |s|
s.name='param_test'
s.version='0.2.0'
s.platform=Gem::Platform::RUBY
s.authors=['Nik Haldimann']
s.email=['nhaldimann@gmail.com']
s.homepage='https://github.com/nikhaldi/param-test-ruby'
s.summary='Parameterized unit tests for Ruby/ActiveSupport'
s.description='Parameterized unit tests for Ruby/ActiveSupport'
s.add_runtime_dependency'activesupport','~> 5.0'
s.add_development_dependency'rake'
s.files=`git ls-files`.split("\n")
s.test_files=`git ls-files -- {test,spec,features}/*`.split("\n")
s.executables=`git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f)}
s.require_paths=['lib']
end