Sha256: 7cf95cb36eb1392523ccf86a32bd88745eb344fa42a8fdb546d8c27537f6b207
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 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) and :mongoid config.orm = :mongoid 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merit-1.7.1 | test/dummy-mongoid/config/initializers/merit.rb |