mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Load RAILS_VERSION relative to the gemspec file.
This commit is contained in:
parent
3789539916
commit
4bc2cbc3cf
8 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../RAILS_VERSION",__FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = File.read("../RAILS_VERSION").strip
|
||||
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
|
Loading…
Reference in a new issue