8000 fix and reformat installer by jeremy-audet · Pull Request #153 · vim-ruby/vim-ruby · GitHub
[go: up one dir, main page]

Skip to content

fix and reformat installer #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 1, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix deprecation error.
Without fix, this error message appears:

    bin/vim-ruby-install.rb:15:in `<main>': Use RbConfig instead of obsolete and deprecated Config.

    uninitialized constant Env::CONFIG
    Try 'ruby bin/vim-ruby-install.rb --help' for detailed usage.
  • Loading branch information
jeremy-audet committed May 9, 2013
commit bea6026e78ac2e4ee598430ff2dd8b707f95bc2e
2 changes: 1 addition & 1 deletion bin/vim-ruby-install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#

require 'rbconfig'
include Config
include RbConfig
require 'fileutils'
require 'optparse'
require 'pathname'
Expand Down
0