Skip to content

Commit

Permalink
Merge pull request #4 from pedrosnk/master
Browse files Browse the repository at this point in the history
Support rails 4 via pre candidate.
  • Loading branch information
macedo committed Sep 3, 2013
2 parents 9dd0678 + ed4c05f commit 354f528
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/masked_input/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ module MaskedInput
module Rails
module Version
MAJOR = 1
MINOR = 1
MINOR = 2
PATCH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
PRE = ".pre"
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}#{PRE}".freeze
end
end
end
2 changes: 1 addition & 1 deletion masked_input-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = MaskedInput::Rails::Version::STRING

gem.add_dependency "railties", "~> 3.1"
gem.add_dependency "railties", "~> 4.0"
end

0 comments on commit 354f528

Please sign in to comment.