forked from nicolasblanco/rails_param
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrails_param.gemspec
More file actions
31 lines (23 loc) · 922 Bytes
/
rails_param.gemspec
File metadata and controls
31 lines (23 loc) · 922 Bytes
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
31
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'rails_param/version'
Gem::Specification.new do |s|
s.name = 'rails_param'
s.version = RailsParam::VERSION
s.authors = ["Nicolas Blanco"]
s.email = 'nicolas@nicolasblanco.fr'
s.homepage = 'http://github.com/nicolasblanco/rails_param'
s.license = 'MIT'
s.description = %q{
Parameter Validation and Type Coercion for Rails
}
s.summary = 'Parameter Validation and Type Coercion for Rails'
s.required_rubygems_version = '>= 1.3.6'
s.files = Dir.glob("lib/**/*.rb") + %w(README.md)
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.add_development_dependency 'rspec', '~> 2.11'
s.add_development_dependency 'rspec-rails', '~> 2.11'
s.add_development_dependency 'actionpack', '>= 3.2.0'
s.add_development_dependency 'activesupport', '>= 3.2.0'
end