This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # redmine.ruby-lang.org issue #2742 | |
| require 'benchmark' | |
| begin | |
| require 'rbconfig' | |
| puts "(#{RbConfig::CONFIG['host_os']}) #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} \ | |
| #{RbConfig::CONFIG['CC']} #{RbConfig::CONFIG['optflags']} #{RbConfig::CONFIG['debugflags']}" | |
| rescue LoadError | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # redmine.ruby-lang.org issue #2742 | |
| require 'benchmark' | |
| begin | |
| require 'rbconfig' | |
| puts "(#{RbConfig::CONFIG['host_os']}) #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} \ | |
| #{RbConfig::CONFIG['CC']} #{RbConfig::CONFIG['optflags']} #{RbConfig::CONFIG['debugflags']}" | |
| rescue LoadError | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'win32/registry' | |
| require 'yaml' | |
| require 'fileutils' | |
| module DevKitInstaller | |
| DEVKIT_ROOT = File.expand_path(File.dirname(__FILE__)) | |
| REG_KEYS = [ | |
| 'Software\RubyInstaller\MRI', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/config/ruby_installer.rb b/config/ruby_installer.rb | |
| index cc18270..c8db950 100644 | |
| --- a/config/ruby_installer.rb | |
| +++ b/config/ruby_installer.rb | |
| @@ -226,7 +226,7 @@ module RubyInstaller | |
| :release => 'official', | |
| :version => '1.3.7', | |
| :url => 'http://rubyforge.org/frs/download.php/70696', | |
| - :checkout => 'http://rubygems.rubyforge.org/svn/trunk', | |
| + :checkout => 'git://github.com/rubygems/rubygems.git', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/config/ruby_installer.rb b/config/ruby_installer.rb | |
| index cc18270..c6834c9 100644 | |
| --- a/config/ruby_installer.rb | |
| +++ b/config/ruby_installer.rb | |
| @@ -226,7 +226,7 @@ module RubyInstaller | |
| :release => 'official', | |
| :version => '1.3.7', | |
| :url => 'http://rubyforge.org/frs/download.php/70696', | |
| - :checkout => 'http://rubygems.rubyforge.org/svn/trunk', | |
| + :checkout => 'http://github.com/rubygems/rubygems.git', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak | |
| --- a/src/GvimExt/Make_ming.mak | |
| +++ b/src/GvimExt/Make_ming.mak | |
| @@ -33,7 +33,7 @@ | |
| endif | |
| endif | |
| CXX := $(CROSS_COMPILE)g++ | |
| -WINDRES := $(CROSS_COMPILE)windres | |
| +WINDRES := $(CROSS_COMPILE)windres --preprocessor="$(CXX) -E -xc" -DRC_INVOKED | |
| LIBS := -luuid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/recipes/interpreter/ruby19.rake b/recipes/interpreter/ruby19.rake | |
| index 755f644..b63d1b8 100644 | |
| --- a/recipes/interpreter/ruby19.rake | |
| +++ b/recipes/interpreter/ruby19.rake | |
| @@ -83,8 +83,10 @@ namespace(:interpreter) do | |
| end | |
| end | |
| + ruby_impl = Gem.ruby | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HG changeset patch | |
| # Parent 4fb4cdadf9a156a82520e860103b327ab0c75e44 | |
| patch dynamic ruby interface | |
| diff --git a/src/if_ruby.c b/src/if_ruby.c | |
| --- a/src/if_ruby.c | |
| +++ b/src/if_ruby.c | |
| @@ -4,6 +4,7 @@ | |
| * | |
| * Ruby interface by Shugo Maeda |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/syntax/ruby.vim b/syntax/ruby.vim | |
| index ece2f4f..283f04e 100644 | |
| --- a/syntax/ruby.vim | |
| +++ b/syntax/ruby.vim | |
| @@ -253,7 +253,7 @@ endif | |
| " Special Methods | |
| if !exists("ruby_no_special_methods") | |
| - syn keyword rubyAccess public protected private module_function | |
| + syn keyword rubyAccess public protected private module_function private_class_method |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/resources/devkit/dk.rb b/resources/devkit/dk.rb | |
| index e04c1dd..b1bc04a 100644 | |
| --- a/resources/devkit/dk.rb | |
| +++ b/resources/devkit/dk.rb | |
| @@ -271,9 +271,15 @@ EOT | |
| if File.exist?(target) | |
| content = File.read(target) | |
| - unless content.include?('DevKit') | |
| + case |
OlderNewer