We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Need to change a little bit the settings.rb, then created the migration... running fine THANKS !
cattr_accessor :defaults
attr_accessible :var, :value
def Settings.defaults @@defaults ||= {}.with_indifferent_access end
Also Have to modify one line in def self.method_missing(method, *args)
unless (method_name =~ /=$/).nil?
The text was updated successfully, but these errors were encountered:
Merge pull request AlexJWayne#6 from highgroove/master
ba456f2
set_table_name -> self.table_name=
No branches or pull requests
Need to change a little bit the settings.rb, then created the migration... running fine THANKS !
cattr_accessor :defaults
attr_accessible :var, :value
def Settings.defaults
@@defaults ||= {}.with_indifferent_access
end
Also Have to modify one line in
def self.method_missing(method, *args)
if method_name =~ /=$/
The text was updated successfully, but these errors were encountered: