first commit
parents
Showing
.gitignore
0 → 100644
.rspec
0 → 100644
.ruby-gemset
0 → 100644
.ruby-version
0 → 100644
.travis.yml
0 → 100644
COPYING
0 → 100644
Gemfile
0 → 100644
source "https://rubygems.org" | ||
gemspec | ||
gem 'pry' | ||
gem 'rails', '~> 4.1.4' | ||
platforms :rbx do | ||
gem 'racc' | ||
gem 'rubysl' | ||
end |
README.md
0 → 100644
Rakefile
0 → 100644
lib/rails_param.rb
0 → 100644
lib/rails_param/param.rb
0 → 100644
lib/rails_param/version.rb
0 → 100644
rails_param.gemspec
0 → 100644
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 = 'WTFPL' | ||
s.description = %q{ | ||
Parameter Validation & Type Coercion for Rails | ||
} | ||
s.summary = 'Parameter Validation & 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', '>= 4.1.0' | ||
s.add_development_dependency 'activesupport', '>= 4.1.0' | ||
end |
spec/fixtures/controllers.rb
0 → 100644
spec/fixtures/fake_rails_application.rb
0 → 100644
spec/rails_integration_spec.rb
0 → 100644
spec/rails_param/param_spec.rb
0 → 100644
spec/rails_param_spec.rb
0 → 100644
Please
register
or
sign in
to comment