Add cmtool to Qwaiter

This commit is contained in:
2013-03-03 14:21:29 +01:00
parent ba19316e16
commit a640255927
13 changed files with 115 additions and 69 deletions
+11
View File
@@ -16,6 +16,17 @@ if defined?(Bundler)
# Bundler.require(:default, :assets, Rails.env)
end
# Ugly fix for the updated json gem changes
module JSON
class << self
alias :old_parse :parse
def parse(json, args = {})
args[:create_additions] = true
old_parse(json, args)
end
end
end
module Qwaiter
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.