Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Preparing for 4.1.10.rc1 release
  • Loading branch information
rafaelfranca committed Feb 20, 2015
1 parent cbe4708 commit a698862
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 42 deletions.
50 changes: 25 additions & 25 deletions Gemfile.lock
@@ -1,45 +1,45 @@
PATH
remote: .
specs:
actionmailer (4.1.9)
actionpack (= 4.1.9)
actionview (= 4.1.9)
actionmailer (4.1.10.rc1)
actionpack (= 4.1.10.rc1)
actionview (= 4.1.10.rc1)
mail (~> 2.5, >= 2.5.4)
actionpack (4.1.9)
actionview (= 4.1.9)
activesupport (= 4.1.9)
actionpack (4.1.10.rc1)
actionview (= 4.1.10.rc1)
activesupport (= 4.1.10.rc1)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
actionview (4.1.9)
activesupport (= 4.1.9)
actionview (4.1.10.rc1)
activesupport (= 4.1.10.rc1)
builder (~> 3.1)
erubis (~> 2.7.0)
activemodel (4.1.9)
activesupport (= 4.1.9)
activemodel (4.1.10.rc1)
activesupport (= 4.1.10.rc1)
builder (~> 3.1)
activerecord (4.1.9)
activemodel (= 4.1.9)
activesupport (= 4.1.9)
activerecord (4.1.10.rc1)
activemodel (= 4.1.10.rc1)
activesupport (= 4.1.10.rc1)
arel (~> 5.0.0)
activesupport (4.1.9)
activesupport (4.1.10.rc1)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
tzinfo (~> 1.1)
rails (4.1.9)
actionmailer (= 4.1.9)
actionpack (= 4.1.9)
actionview (= 4.1.9)
activemodel (= 4.1.9)
activerecord (= 4.1.9)
activesupport (= 4.1.9)
rails (4.1.10.rc1)
actionmailer (= 4.1.10.rc1)
actionpack (= 4.1.10.rc1)
actionview (= 4.1.10.rc1)
activemodel (= 4.1.10.rc1)
activerecord (= 4.1.10.rc1)
activesupport (= 4.1.10.rc1)
bundler (>= 1.3.0, < 2.0)
railties (= 4.1.9)
railties (= 4.1.10.rc1)
sprockets-rails (~> 2.0)
railties (4.1.9)
actionpack (= 4.1.9)
activesupport (= 4.1.9)
railties (4.1.10.rc1)
actionpack (= 4.1.10.rc1)
activesupport (= 4.1.10.rc1)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)

Expand Down
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.1.9
4.1.10.rc1
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 = 1
TINY = 9
PRE = nil
TINY = 10
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
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 9
PRE = nil
TINY = 10
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
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 9
PRE = nil
TINY = 10
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
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 9
PRE = nil
TINY = 10
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
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 9
PRE = nil
TINY = 10
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
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 9
PRE = nil
TINY = 10
PRE = "rc1"

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 = 1
TINY = 9
PRE = nil
TINY = 10
PRE = "rc1"

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 = 1
TINY = 9
PRE = nil
TINY = 10
PRE = "rc1"

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

0 comments on commit a698862

Please sign in to comment.