forked from thoughtbot/shoulda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shoulda.gemspec
30 lines (27 loc) · 899 Bytes
/
shoulda.gemspec
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
28
29
30
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'shoulda/version'
Gem::Specification.new do |s|
s.name = 'shoulda'
s.version = Shoulda::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [
'Tammer Saleh',
'Joe Ferris',
'Ryan McGeary',
'Dan Croak',
'Matt Jankowski'
]
s.email = '[email protected]'
s.homepage = 'https://github.com/thoughtbot/shoulda'
s.summary = 'Making tests easy on the fingers and eyes'
s.description = 'Making tests easy on the fingers and eyes'
s.license = 'MIT'
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 do |file|
File.basename(file)
end
s.require_paths = ['lib']
s.add_dependency('shoulda-context', ['~> 1.0', '>= 1.0.1'])
s.add_dependency('shoulda-matchers', '~> 3.0')
end