Sha256: 25c789b0480660d0eb4a84e3787b0ec48fc2b264323aaabe4c65ae9c94a61dc4
Contents?: true
Size: 1.08 KB
Versions: 14
Compression:
Stored size: 1.08 KB
Contents
# Use this hook to configure merit parameters Merit.setup do |config| # Check rules on each request or in background # config.checks_on_each_request = true # Define ORM. Could be :active_record (default), :mongo_mapper and :mongoid # config.orm = :active_record end # Create application badges (uses https://github.com/norman/ambry) badge_id = 0 [{ :id => (badge_id = badge_id+1), :name => 'commenter', :description => 'You\'ve participated good in our boards!', :level => 10 }, { :id => (badge_id = badge_id+1), :name => 'commenter', :description => 'You\'ve participated great in our boards!' }, { :id => (badge_id = badge_id+1), :name => 'relevant-commenter', :description => 'You\'ve received 5 votes on a comment.' }, { :id => (badge_id = badge_id+1), :name => 'autobiographer', :description => 'You\'ve edited your name and it\'s above 4 characters! (?)' }, { :id => (badge_id = badge_id+1), :name => 'just-registered' }, { :id => (badge_id = badge_id+1), :name => 'gossip' }].each do |badge| Badge.create! badge end
Version data entries
14 entries across 14 versions & 1 rubygems