forked from shoulda-kept/shoulda-kept-assign-to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoulda-kept-assign-to.gemspec
28 lines (24 loc) · 1.08 KB
/
shoulda-kept-assign-to.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
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
Gem::Specification.new do |s|
s.name = "shoulda-kept-assign-to"
s.version = '1.0.1'
s.authors = ["Angel Irizarry", "Ben Sedat"]
s.date = Time.now.strftime("%Y-%m-%d")
s.email = "[email protected]"
s.homepage = "https://www.tinfoilsecurity.com"
s.summary = "We miss the assign_to matcher in shoulda-matchers."
s.license = "MIT"
s.description = "We miss the assign_to matcher in shoulda-matchers."
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"]
s.required_ruby_version = '>= 1.9.2'
s.add_dependency('shoulda-matchers', '>= 2.1.0')
s.add_development_dependency('bundler')
s.add_development_dependency('rake')
s.add_development_dependency('appraisal')
s.add_development_dependency('rails', '~> 3')
s.add_development_dependency('sqlite3')
s.add_development_dependency('rspec-rails')
end