ankh 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/.gitignore +18 -0
  2. data/{spec/spec.opts → .rspec} +0 -0
  3. data/.rvmrc +1 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +4 -2
  6. data/README.rdoc +15 -5
  7. data/Rakefile +6 -84
  8. data/ankh.gemspec +20 -67
  9. data/lib/..rb +5 -0
  10. data/lib/ankh.rb +4 -6
  11. data/lib/ankh/model.rb +18 -10
  12. data/lib/ankh/question.rb +1 -1
  13. data/lib/ankh/railtie.rb +8 -0
  14. data/lib/ankh/validations/{human.rb → human_validator.rb} +0 -12
  15. data/lib/ankh/version.rb +3 -0
  16. data/spec/ankh/model_spec.rb +10 -7
  17. data/spec/dummy/Rakefile +7 -0
  18. data/spec/dummy/api_docs/api_authentication.markdown +70 -0
  19. data/spec/dummy/api_docs/api_user_creates_user.markdown +1170 -0
  20. data/spec/dummy/api_docs/partner_creation.markdown +78 -0
  21. data/spec/dummy/api_docs/topic_creation.markdown +76 -0
  22. data/spec/dummy/api_docs/user_creation.markdown +31 -0
  23. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  24. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  25. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  26. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  27. data/{features/step_definitions/ankh_steps.rb → spec/dummy/app/mailers/.gitkeep} +0 -0
  28. data/spec/dummy/app/models/.gitkeep +0 -0
  29. data/spec/dummy/app/views/devise/confirmations/new.html.erb +15 -0
  30. data/spec/dummy/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  31. data/spec/dummy/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  32. data/spec/dummy/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  33. data/spec/dummy/app/views/devise/passwords/edit.html.erb +19 -0
  34. data/spec/dummy/app/views/devise/passwords/new.html.erb +15 -0
  35. data/spec/dummy/app/views/devise/registrations/edit.html.erb +22 -0
  36. data/spec/dummy/app/views/devise/registrations/new.html.erb +20 -0
  37. data/spec/dummy/app/views/devise/sessions/new.html.erb +15 -0
  38. data/spec/dummy/app/views/devise/sessions/new.mobile.erb +14 -0
  39. data/spec/dummy/app/views/devise/shared/_links.erb +25 -0
  40. data/spec/dummy/app/views/devise/unlocks/new.html.erb +15 -0
  41. data/spec/dummy/config.ru +4 -0
  42. data/spec/dummy/config/application.rb +45 -0
  43. data/spec/dummy/config/boot.rb +10 -0
  44. data/spec/dummy/config/database.yml +20 -0
  45. data/spec/dummy/config/environment.rb +5 -0
  46. data/spec/dummy/config/environments/development.rb +30 -0
  47. data/spec/dummy/config/environments/production.rb +60 -0
  48. data/spec/dummy/config/environments/test.rb +39 -0
  49. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  50. data/spec/dummy/config/initializers/inflections.rb +10 -0
  51. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  52. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  53. data/spec/dummy/config/initializers/session_store.rb +8 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +5 -0
  56. data/spec/dummy/config/routes.rb +3 -0
  57. data/spec/dummy/db/development.sqlite3 +0 -0
  58. data/spec/dummy/db/schema.rb +188 -0
  59. data/spec/dummy/db/test.sqlite3 +0 -0
  60. data/spec/dummy/lib/assets/.gitkeep +0 -0
  61. data/spec/dummy/public/404.html +26 -0
  62. data/spec/dummy/public/422.html +26 -0
  63. data/spec/dummy/public/500.html +26 -0
  64. data/spec/dummy/public/favicon.ico +0 -0
  65. data/spec/dummy/script/rails +6 -0
  66. data/spec/spec_helper.rb +10 -14
  67. metadata +205 -130
  68. data/features/ankh.feature +0 -9
  69. data/features/support/env.rb +0 -4
  70. data/lib/ankh/rails/legacy.rb +0 -41
  71. data/spec/support/active_record_spec_helper.rb +0 -44
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,20 @@
1
+
2
+ # PostgreSQL. Versions 7.4 and 8.x are supported.
3
+ #
4
+ # Install the ruby-postgres driver:
5
+ # gem install ruby-postgres
6
+ # On Mac OS X:
7
+ # gem install ruby-postgres -- --include=/usr/local/pgsql
8
+ # On Windows:
9
+ # gem install ruby-postgres
10
+ # Choose the win32 build.
11
+ # Install PostgreSQL and put its /bin directory on your path.
12
+
13
+ development:
14
+ adapter: sqlite3
15
+ database: ":memory:"
16
+
17
+ test:
18
+ adapter: sqlite3
19
+ database: ":memory:"
20
+
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,30 @@
1
+ Dummy::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 web server 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
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+
28
+ # Expands the lines which load the assets
29
+ config.assets.debug = true
30
+ end
@@ -0,0 +1,60 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Use a different logger for distributed setups
37
+ # config.logger = SyslogLogger.new
38
+
39
+ # Use a different cache store in production
40
+ # config.cache_store = :mem_cache_store
41
+
42
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
+ # config.action_controller.asset_host = "http://assets.example.com"
44
+
45
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
+ # config.assets.precompile += %w( search.js )
47
+
48
+ # Disable delivery errors, bad email addresses will be ignored
49
+ # config.action_mailer.raise_delivery_errors = false
50
+
51
+ # Enable threaded mode
52
+ # config.threadsafe!
53
+
54
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
+ # the I18n.default_locale when a translation can not be found)
56
+ config.i18n.fallbacks = true
57
+
58
+ # Send deprecation notices to registered listeners
59
+ config.active_support.deprecation = :notify
60
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ 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,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -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
+ Dummy::Application.config.secret_token = '06aa706beeb35a648d68fc3ba3b4db1bf675e01104fc3200c38735a26f7fee18a2d6499c6f4d0de430d8359cf2a5083c32b52b934dfa70116ea306ecc2688dd7'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::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,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ end
3
+
@@ -0,0 +1,188 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20111204214904) do
15
+
16
+ create_table "api_tokens", :force => true do |t|
17
+ t.string "authentication_token", :null => false
18
+ t.string "description", :null => false
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ t.string "shared_secret"
22
+ end
23
+
24
+ add_index "api_tokens", ["authentication_token"], :name => "index_api_tokens_on_authentication_token", :unique => true
25
+
26
+ create_table "comments", :force => true do |t|
27
+ t.text "description", :null => false
28
+ t.integer "user_id", :null => false
29
+ t.integer "idea_id", :null => false
30
+ t.datetime "created_at"
31
+ t.datetime "updated_at"
32
+ t.integer "ratings_count", :default => 0, :null => false
33
+ t.float "average_rating_score"
34
+ end
35
+
36
+ add_index "comments", ["idea_id"], :name => "index_comments_on_idea_id"
37
+ add_index "comments", ["user_id"], :name => "index_comments_on_user_id"
38
+
39
+ create_table "ideas", :force => true do |t|
40
+ t.text "description", :null => false
41
+ t.datetime "created_at"
42
+ t.datetime "updated_at"
43
+ t.string "title", :null => false
44
+ t.integer "subject_id", :null => false
45
+ t.string "subject_type", :null => false
46
+ t.integer "ratings_count", :default => 0, :null => false
47
+ t.integer "user_id", :null => false
48
+ t.float "average_rating_score"
49
+ end
50
+
51
+ add_index "ideas", ["created_at"], :name => "index_ideas_on_created_at"
52
+ add_index "ideas", ["subject_id", "subject_type"], :name => "index_ideas_on_subject_id_and_subject_type"
53
+ add_index "ideas", ["user_id"], :name => "index_ideas_on_user_id"
54
+
55
+ create_table "partner_memberships", :force => true do |t|
56
+ t.integer "user_id", :null => false
57
+ t.integer "partner_id", :null => false
58
+ t.string "role", :default => "user"
59
+ t.datetime "created_at"
60
+ t.datetime "updated_at"
61
+ end
62
+
63
+ add_index "partner_memberships", ["user_id", "partner_id"], :name => "index_partner_memberships_on_user_id_and_partner_id", :unique => true
64
+
65
+ create_table "partners", :force => true do |t|
66
+ t.string "name"
67
+ t.string "subdomain"
68
+ t.datetime "created_at"
69
+ t.datetime "updated_at"
70
+ t.text "intro_text"
71
+ t.string "plan_tier", :default => "freemium", :null => false
72
+ t.integer "rating_system_id"
73
+ t.integer "idea_rating_system_id"
74
+ end
75
+
76
+ add_index "partners", ["idea_rating_system_id"], :name => "index_partners_on_idea_rating_system_id"
77
+ add_index "partners", ["plan_tier"], :name => "index_partners_on_plan_tier"
78
+ add_index "partners", ["rating_system_id"], :name => "index_partners_on_rating_system_id"
79
+
80
+ create_table "preferences", :force => true do |t|
81
+ t.string "name", :null => false
82
+ t.integer "owner_id", :null => false
83
+ t.string "owner_type", :null => false
84
+ t.integer "group_id"
85
+ t.string "group_type"
86
+ t.string "value"
87
+ t.datetime "created_at"
88
+ t.datetime "updated_at"
89
+ end
90
+
91
+ add_index "preferences", ["owner_id", "owner_type", "name", "group_id", "group_type"], :name => "index_preferences_on_owner_and_name_and_preference", :unique => true
92
+
93
+ create_table "previous_ratings", :force => true do |t|
94
+ t.integer "user_id", :null => false
95
+ t.integer "rating_system_id", :null => false
96
+ t.integer "score", :null => false
97
+ t.datetime "created_at"
98
+ t.datetime "updated_at"
99
+ t.integer "rateable_id", :null => false
100
+ t.string "rateable_type", :null => false
101
+ end
102
+
103
+ add_index "previous_ratings", ["rateable_id", "rateable_type"], :name => "index_previous_ratings_on_rateable_id_and_rateable_type"
104
+ add_index "previous_ratings", ["rating_system_id"], :name => "index_previous_ratings_on_rating_system_id"
105
+ add_index "previous_ratings", ["user_id"], :name => "index_previous_ratings_on_user_id"
106
+
107
+ create_table "rating_systems", :force => true do |t|
108
+ t.integer "minimum_score", :null => false
109
+ t.integer "maximum_score", :null => false
110
+ t.string "name", :null => false
111
+ t.datetime "created_at"
112
+ t.datetime "updated_at"
113
+ end
114
+
115
+ create_table "ratings", :force => true do |t|
116
+ t.integer "score", :null => false
117
+ t.integer "user_id", :null => false
118
+ t.integer "rating_system_id", :null => false
119
+ t.datetime "created_at"
120
+ t.datetime "updated_at"
121
+ t.integer "rateable_id", :null => false
122
+ t.string "rateable_type", :null => false
123
+ end
124
+
125
+ add_index "ratings", ["rateable_id", "rateable_type"], :name => "index_ratings_on_rateable_id_and_rateable_type"
126
+ add_index "ratings", ["rating_system_id"], :name => "index_ratings_on_rating_system_id"
127
+ add_index "ratings", ["user_id", "rateable_id", "rateable_type"], :name => "index_ratings_on_user_id_and_rateable_id_and_rateable_type", :unique => true
128
+ add_index "ratings", ["user_id"], :name => "index_ratings_on_user_id"
129
+
130
+ create_table "taggings", :force => true do |t|
131
+ t.integer "tag_id"
132
+ t.integer "taggable_id"
133
+ t.string "taggable_type"
134
+ t.integer "tagger_id"
135
+ t.string "tagger_type"
136
+ t.string "context"
137
+ t.datetime "created_at"
138
+ end
139
+
140
+ add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id"
141
+ add_index "taggings", ["taggable_id", "taggable_type", "context"], :name => "index_taggings_on_taggable_id_and_taggable_type_and_context"
142
+
143
+ create_table "tags", :force => true do |t|
144
+ t.string "name"
145
+ end
146
+
147
+ create_table "topics", :force => true do |t|
148
+ t.string "title", :null => false
149
+ t.text "description", :null => false
150
+ t.integer "partner_id", :null => false
151
+ t.datetime "created_at"
152
+ t.datetime "updated_at"
153
+ t.datetime "closed_at"
154
+ t.string "external_id"
155
+ t.integer "ratings_count", :default => 0, :null => false
156
+ t.float "average_rating_score"
157
+ end
158
+
159
+ add_index "topics", ["closed_at"], :name => "index_topics_on_closed_at"
160
+ add_index "topics", ["external_id"], :name => "index_topics_on_external_id"
161
+ add_index "topics", ["partner_id"], :name => "index_topics_on_partner_id"
162
+
163
+ create_table "users", :force => true do |t|
164
+ t.string "email", :default => "", :null => false
165
+ t.string "encrypted_password", :limit => 128, :default => "", :null => false
166
+ t.string "login", :null => false
167
+ t.string "first_name"
168
+ t.string "last_name"
169
+ t.string "reset_password_token"
170
+ t.datetime "reset_password_sent_at"
171
+ t.datetime "remember_created_at"
172
+ t.integer "sign_in_count", :default => 0
173
+ t.datetime "current_sign_in_at"
174
+ t.datetime "last_sign_in_at"
175
+ t.string "current_sign_in_ip"
176
+ t.string "last_sign_in_ip"
177
+ t.datetime "created_at"
178
+ t.datetime "updated_at"
179
+ t.string "role", :default => "user"
180
+ t.string "external_id"
181
+ end
182
+
183
+ add_index "users", ["email"], :name => "index_users_on_email", :unique => true
184
+ add_index "users", ["external_id"], :name => "index_users_on_external_id"
185
+ add_index "users", ["login"], :name => "index_users_on_login", :unique => true
186
+ add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
187
+
188
+ end
File without changes
File without changes
@@ -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>