forked from beastaugh/verification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification.gemspec
More file actions
20 lines (17 loc) · 799 Bytes
/
verification.gemspec
File metadata and controls
20 lines (17 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "verification"
s.version = "1.0.3"
s.platform = Gem::Platform::RUBY
s.authors = ["David Heinemeier Hansson"]
s.homepage = "https://rubygems.org/gems/verification"
s.summary = %q{Verify preconditions for Rails actions}
s.description = %q{Verify preconditions for Rails actions}
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.add_dependency('activesupport', '>= 3.0.0', '< 3.3.0')
s.add_dependency('actionpack', '>= 3.0.0', '< 3.3.0')
end