Newbe: rails version issue

@steve

Keep learning with rubymine, the thing is once you learn how easy rails
is
you will see that IDEs just get in the way , but you have to learn that
by
your self we cant tell you that, eventually you will see that for rails
the
only thing that a IDE is good for is to search for file quickly.

just remove rake.gemspec and it will work. It worked for me at least.

http://rubyforge.org/forum/forum.php?thread_id=48830&forum_id=37643

Alexandr Kim wrote in post #960797:

just remove rake.gemspec and it will work. It worked for me at least.

http://rubyforge.org/forum/forum.php?thread_id=48830&forum_id=37643

Thanks for the tip - it worked!

[Repost of something that apparently got eaten.]

Marnen Laibow-Koser wrote in post #955224:

Steve M. wrote in post #955220:

The content was…

diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 266d717…0e9f39a 100755
— a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -515,7 +515,7 @@ install?(:ext, :comm, :gem) do
version = open(src) {|f| f.find {|s| /^\s*\wVERSION\s=(?!=)/ =~
s}} or next
version = version.split(%r"=\s*", 2)[1].strip[/\A(['"])(.*?)\1/,
2]
puts “#{” “*30}#{name} #{version}”

  • open_for_install(File.join(destdir, “#{name}.gemspec”), $data_mode)
    do
  • open_for_install(File.join(destdir, “#{name}-#{version}.gemspec”),
    $data_mode) do
    <<-GEMSPEC
    Gem::Specification.new do |s|
    s.name = #{name.dump}

Then you probably want to use Git to apply it – check out the docs for
git-apply.

No, on second thought, you don’t need Git to apply the patch. Just use
the patch command as I explained earlier.

Best,

Marnen Laibow-Koser
http://www.marnen.org
[email protected]