merit 0.7.1 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +5 -0
- data/Gemfile.lock +13 -2
- data/README.md +72 -53
- data/TESTING.txt +7 -2
- data/lib/generators/merit/templates/merit.rb +1 -1
- data/lib/merit.rb +2 -1
- data/lib/merit/controller_extensions.rb +2 -2
- data/lib/merit/model_additions.rb +9 -2
- data/lib/merit/models/mongo_mapper/merit_action.rb +1 -0
- data/lib/merit/models/mongoid/merit_action.rb +13 -0
- data/lib/merit/models/mongoid/sash.rb +14 -0
- data/lib/merit/rule.rb +4 -2
- data/lib/merit/rules_rank.rb +7 -2
- data/merit.gemspec +5 -2
- data/test/dummy-mongoid/Rakefile +7 -0
- data/test/dummy-mongoid/app/controllers/application_controller.rb +7 -0
- data/test/dummy-mongoid/app/controllers/comments_controller.rb +90 -0
- data/test/dummy-mongoid/app/controllers/registrations_controller.rb +15 -0
- data/test/dummy-mongoid/app/controllers/users_controller.rb +67 -0
- data/test/dummy-mongoid/app/helpers/application_helper.rb +2 -0
- data/test/dummy-mongoid/app/models/comment.rb +17 -0
- data/test/dummy-mongoid/app/models/merit/badge_rules.rb +49 -0
- data/test/dummy-mongoid/app/models/merit/point_rules.rb +20 -0
- data/test/dummy-mongoid/app/models/merit/rank_rules.rb +24 -0
- data/test/dummy-mongoid/app/models/user.rb +30 -0
- data/test/dummy-mongoid/app/views/comments/_form.html.erb +29 -0
- data/test/dummy-mongoid/app/views/comments/edit.html.erb +6 -0
- data/test/dummy-mongoid/app/views/comments/index.html.erb +35 -0
- data/test/dummy-mongoid/app/views/comments/new.html.erb +5 -0
- data/test/dummy-mongoid/app/views/comments/show.html.erb +23 -0
- data/test/dummy-mongoid/app/views/layouts/application.html.erb +24 -0
- data/test/dummy-mongoid/app/views/users/_form.html.erb +22 -0
- data/test/dummy-mongoid/app/views/users/edit.html.erb +6 -0
- data/test/dummy-mongoid/app/views/users/index.html.erb +26 -0
- data/test/dummy-mongoid/app/views/users/new.html.erb +5 -0
- data/test/dummy-mongoid/app/views/users/show.html.erb +18 -0
- data/test/dummy-mongoid/config.ru +4 -0
- data/test/dummy-mongoid/config/application.rb +22 -0
- data/test/dummy-mongoid/config/boot.rb +10 -0
- data/test/dummy-mongoid/config/environment.rb +5 -0
- data/test/dummy-mongoid/config/environments/development.rb +25 -0
- data/test/dummy-mongoid/config/environments/production.rb +49 -0
- data/test/dummy-mongoid/config/environments/test.rb +35 -0
- data/test/dummy-mongoid/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy-mongoid/config/initializers/inflections.rb +10 -0
- data/test/dummy-mongoid/config/initializers/merit.rb +37 -0
- data/test/dummy-mongoid/config/initializers/mime_types.rb +5 -0
- data/test/dummy-mongoid/config/initializers/secret_token.rb +7 -0
- data/test/dummy-mongoid/config/initializers/session_store.rb +8 -0
- data/test/dummy-mongoid/config/locales/en.yml +5 -0
- data/test/dummy-mongoid/config/mongoid.yml +14 -0
- data/test/dummy-mongoid/config/routes.rb +9 -0
- data/test/dummy-mongoid/db/seeds.rb +17 -0
- data/test/dummy-mongoid/public/404.html +26 -0
- data/test/dummy-mongoid/public/422.html +26 -0
- data/test/dummy-mongoid/public/500.html +26 -0
- data/test/dummy-mongoid/public/favicon.ico +0 -0
- data/test/dummy-mongoid/public/javascripts/application.js +2 -0
- data/test/dummy-mongoid/public/javascripts/controls.js +965 -0
- data/test/dummy-mongoid/public/javascripts/dragdrop.js +974 -0
- data/test/dummy-mongoid/public/javascripts/effects.js +1123 -0
- data/test/dummy-mongoid/public/javascripts/prototype.js +6001 -0
- data/test/dummy-mongoid/public/javascripts/rails.js +191 -0
- data/test/dummy-mongoid/public/stylesheets/.gitkeep +0 -0
- data/test/dummy-mongoid/public/stylesheets/scaffold.css +56 -0
- data/test/dummy-mongoid/script/rails +6 -0
- data/test/dummy/config/initializers/merit.rb +1 -1
- data/test/integration/navigation_test.rb +1 -1
- data/test/merit_unit_test.rb +3 -0
- data/test/test_helper.rb +20 -3
- metadata +92 -16
@@ -0,0 +1,22 @@
|
|
1
|
+
<% obj = params[:action] == 'new' ? @user : [:registrations, @user] %>
|
2
|
+
<%= form_for obj do |f| %>
|
3
|
+
<% if @user.errors.any? %>
|
4
|
+
<div id="error_explanation">
|
5
|
+
<h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>
|
6
|
+
|
7
|
+
<ul>
|
8
|
+
<% @user.errors.full_messages.each do |msg| %>
|
9
|
+
<li><%= msg %></li>
|
10
|
+
<% end %>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<div class="field">
|
16
|
+
<%= f.label :name %><br />
|
17
|
+
<%= f.text_field :name %>
|
18
|
+
</div>
|
19
|
+
<div class="actions">
|
20
|
+
<%= f.submit %>
|
21
|
+
</div>
|
22
|
+
<% end %>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<h1>Listing users</h1>
|
2
|
+
|
3
|
+
<table>
|
4
|
+
<tr>
|
5
|
+
<th>Name</th>
|
6
|
+
<th>#Comments</th>
|
7
|
+
<th>Badges</th>
|
8
|
+
<th>Points</th>
|
9
|
+
</tr>
|
10
|
+
|
11
|
+
<% @users.each do |user| %>
|
12
|
+
<tr>
|
13
|
+
<td><%= user.name %></td>
|
14
|
+
<td><%= user.comments.count %></td>
|
15
|
+
<td><%= user.show_badges %></td>
|
16
|
+
<td><%= user.points %></td>
|
17
|
+
<td><%= link_to 'Show', user %>
|
18
|
+
- <%= link_to 'Edit', edit_user_path(user) %>
|
19
|
+
- <%= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete %></td>
|
20
|
+
</tr>
|
21
|
+
<% end %>
|
22
|
+
</table>
|
23
|
+
|
24
|
+
<br />
|
25
|
+
|
26
|
+
<%= link_to 'New User', new_user_path %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<p>
|
2
|
+
<b>Name:</b>
|
3
|
+
<%= @user.name %>
|
4
|
+
</p>
|
5
|
+
|
6
|
+
<p>
|
7
|
+
<b>Comments:</b>
|
8
|
+
<%= @user.comments.count %>
|
9
|
+
</p>
|
10
|
+
|
11
|
+
<p>
|
12
|
+
<b>Badges:</b>
|
13
|
+
<%= @user.show_badges %>
|
14
|
+
</p>
|
15
|
+
|
16
|
+
|
17
|
+
<%= link_to 'Edit', edit_user_path(@user) %> |
|
18
|
+
<%= link_to 'Back', users_path %>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "action_controller/railtie"
|
4
|
+
require "action_view/railtie"
|
5
|
+
require "action_mailer/railtie"
|
6
|
+
|
7
|
+
Bundler.require
|
8
|
+
require "merit"
|
9
|
+
|
10
|
+
module DummyMongoid
|
11
|
+
class Application < Rails::Application
|
12
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
13
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
14
|
+
# config.i18n.default_locale = :de
|
15
|
+
|
16
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
17
|
+
config.encoding = "utf-8"
|
18
|
+
|
19
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
20
|
+
config.filter_parameters += [:password]
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
DummyMongoid::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Only use best-standards-support built into browsers
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
24
|
+
end
|
25
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
DummyMongoid::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
DummyMongoid::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Use this hook to configure merit parameters
|
2
|
+
Merit.setup do |config|
|
3
|
+
# Check rules on each request or in background
|
4
|
+
# config.checks_on_each_request = true
|
5
|
+
|
6
|
+
# Define ORM. Could be :active_record (default) and :mongo_mapper and :mongoid
|
7
|
+
config.orm = :mongoid
|
8
|
+
end
|
9
|
+
|
10
|
+
# Create application badges (uses https://github.com/norman/ambry)
|
11
|
+
badge_id = 0
|
12
|
+
[{
|
13
|
+
:id => (badge_id = badge_id+1),
|
14
|
+
:name => 'commenter',
|
15
|
+
:description => 'You\'ve participated good in our boards!',
|
16
|
+
:level => 10
|
17
|
+
}, {
|
18
|
+
:id => (badge_id = badge_id+1),
|
19
|
+
:name => 'commenter',
|
20
|
+
:description => 'You\'ve participated great in our boards!'
|
21
|
+
}, {
|
22
|
+
:id => (badge_id = badge_id+1),
|
23
|
+
:name => 'relevant-commenter',
|
24
|
+
:description => 'You\'ve received 5 votes on a comment.'
|
25
|
+
}, {
|
26
|
+
:id => (badge_id = badge_id+1),
|
27
|
+
:name => 'autobiographer',
|
28
|
+
:description => 'You\'ve edited your name and it\'s above 4 characters! (?)'
|
29
|
+
}, {
|
30
|
+
:id => (badge_id = badge_id+1),
|
31
|
+
:name => 'just-registered'
|
32
|
+
}, {
|
33
|
+
:id => (badge_id = badge_id+1),
|
34
|
+
:name => 'gossip'
|
35
|
+
}].each do |badge|
|
36
|
+
Badge.create! badge
|
37
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
DummyMongoid::Application.config.secret_token = 'f00fe8e4404331c84a9f1d877217c57399e0429ed948843f5d0b5db642cb2ab2c1dc28a17ef7daeecf64b1a4f2b61f7ae4886ab993fb0d7cf65d7b64ba5fbcb1'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
DummyMongoid::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,9 @@
|
|
1
|
+
DummyMongoid::Application.routes.draw do
|
2
|
+
resources :users, :except => :update
|
3
|
+
resources :registrations, :only => :update, :as => :registrations_user
|
4
|
+
resources :comments
|
5
|
+
|
6
|
+
match '/comments/:id/vote/:value' => 'comments#vote', :value => /\d+/
|
7
|
+
|
8
|
+
root :to => 'users#index'
|
9
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
commenter = User.create(:name => 'the-commenter-guy')
|
2
|
+
social = User.create(:name => 'social-skilled-man')
|
3
|
+
bored = User.create(:name => 'bored-or-speechless')
|
4
|
+
|
5
|
+
(1..9).each do |i|
|
6
|
+
Comment.create(
|
7
|
+
:name => "Title #{i}",
|
8
|
+
:comment => "Comment #{i}",
|
9
|
+
:user_id => social.id,
|
10
|
+
:votes => 3
|
11
|
+
)
|
12
|
+
Comment.create(
|
13
|
+
:name => "Title #{i}",
|
14
|
+
:comment => "Comment #{i}",
|
15
|
+
:user_id => commenter.id
|
16
|
+
)
|
17
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|