Skip to content
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

"Stringify options values" dosn't work in ruby 1.9.2 #21

Open
ghost opened this issue Nov 11, 2011 · 0 comments
Open

"Stringify options values" dosn't work in ruby 1.9.2 #21

ghost opened this issue Nov 11, 2011 · 0 comments

Comments

@ghost
Copy link

ghost commented Nov 11, 2011

regarding https://github.com/ahe/2dc_jqgrid/blob/master/lib/2dc_jqgrid.rb#L41

[tk@Na14-38 apollo]$ cat 1.rb
options =
{
:rows_per_page => 10,
:search => true,
}

Stringify options values

options.inject({}) do |options, (key, value)|
options[key] = value.to_s
options
end
p options
[tk@Na14-38 apollo]$

[tk@Na14-38 apollo]$ rvm use 1.9.2
Using /home/tk/.rvm/gems/ruby-1.9.2-p290

[tk@Na14-38 apollo]$ ruby -v 1.rb
ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux]
1.rb:15: warning: shadowing outer local variable - options #<== warning !!
{:rows_per_page=>10, :search=>true} #<== not worked!!

[tk@Na14-38 apollo]$ rvm use system
Now using system ruby.

[tk@Na14-38 apollo]$ ruby -v 1.rb
ruby 1.8.7 (2010-08-16 patchlevel 302) [i686-linux]
{:rows_per_page=>"10", :search=>"true"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants