Skip to content

Commit

Permalink
Bump the development version
Browse files Browse the repository at this point in the history
This will make possible to do version check on gems
  • Loading branch information
rafaelfranca committed Apr 1, 2015
1 parent 9a8757f commit 35cd6bc
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 48 deletions.
58 changes: 29 additions & 29 deletions Gemfile.lock
Expand Up @@ -14,55 +14,55 @@ GIT
PATH
remote: .
specs:
actionmailer (4.2.1)
actionpack (= 4.2.1)
actionview (= 4.2.1)
activejob (= 4.2.1)
actionmailer (4.2.2.beta)
actionpack (= 4.2.2.beta)
actionview (= 4.2.2.beta)
activejob (= 4.2.2.beta)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.1)
actionview (= 4.2.1)
activesupport (= 4.2.1)
actionpack (4.2.2.beta)
actionview (= 4.2.2.beta)
activesupport (= 4.2.2.beta)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.1)
activesupport (= 4.2.1)
actionview (4.2.2.beta)
activesupport (= 4.2.2.beta)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (4.2.1)
activesupport (= 4.2.1)
activejob (4.2.2.beta)
activesupport (= 4.2.2.beta)
globalid (>= 0.3.0)
activemodel (4.2.1)
activesupport (= 4.2.1)
activemodel (4.2.2.beta)
activesupport (= 4.2.2.beta)
builder (~> 3.1)
activerecord (4.2.1)
activemodel (= 4.2.1)
activesupport (= 4.2.1)
activerecord (4.2.2.beta)
activemodel (= 4.2.2.beta)
activesupport (= 4.2.2.beta)
arel (~> 6.0)
activesupport (4.2.1)
activesupport (4.2.2.beta)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
rails (4.2.1)
actionmailer (= 4.2.1)
actionpack (= 4.2.1)
actionview (= 4.2.1)
activejob (= 4.2.1)
activemodel (= 4.2.1)
activerecord (= 4.2.1)
activesupport (= 4.2.1)
rails (4.2.2.beta)
actionmailer (= 4.2.2.beta)
actionpack (= 4.2.2.beta)
actionview (= 4.2.2.beta)
activejob (= 4.2.2.beta)
activemodel (= 4.2.2.beta)
activerecord (= 4.2.2.beta)
activesupport (= 4.2.2.beta)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.1)
railties (= 4.2.2.beta)
sprockets-rails
railties (4.2.1)
actionpack (= 4.2.1)
activesupport (= 4.2.1)
railties (4.2.2.beta)
actionpack (= 4.2.2.beta)
activesupport (= 4.2.2.beta)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)

Expand Down
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.2.1
4.2.2.beta
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_pack/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions actionview/lib/action_view/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions activejob/lib/active_job/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions activemodel/lib/active_model/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions activerecord/lib/active_record/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 2
TINY = 1
PRE = nil
TINY = 2
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down

0 comments on commit 35cd6bc

Please sign in to comment.