You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Made an application with Sinatra, and running using MRI Ruby and JRuby. The below code works in MRI Ruby but not in JRuby. Does Ruby / JRuby handle symbol case differently? (erb :product_List vs :product_list).
If this is a non-issue, please feel free to close. I just noticed something strange when switching between two versions of ruby so I'm filing a report.
get "/digital-signage" do
@page_title = "Digital Signage"
@division = Division.get('digital-signage')
erb :product_List
end
# Product Lists - Generic
get "/interactive-tv" do
@page_title = "Interactive TV"
@division = Division.get('interactive-tv')
erb :product_list
end
The text was updated successfully, but these errors were encountered:
Made an application with Sinatra, and running using MRI Ruby and JRuby. The below code works in MRI Ruby but not in JRuby. Does Ruby / JRuby handle symbol case differently? (erb :product_List vs :product_list).
If this is a non-issue, please feel free to close. I just noticed something strange when switching between two versions of ruby so I'm filing a report.
The text was updated successfully, but these errors were encountered: