Skip to content

Commit

Permalink
Update the gem versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Oct 30, 2015
1 parent 7ecac3e commit 23df880
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 13
PRE = nil
TINY = 14
PRE = "rc1"

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

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

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

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

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

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

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion railties/test/rails_info_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_property_with_block
end

def test_rails_version
assert_property 'Rails version',
assert_property 'Rails version',
File.read(File.realpath('../../../RAILS_VERSION', __FILE__)).chomp
end

Expand Down
4 changes: 2 additions & 2 deletions version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 13
PRE = nil
TINY = 14
PRE = "rc1"

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

0 comments on commit 23df880

Please sign in to comment.