acts_as_api 0.3.11 → 0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +7 -4
- data/.travis.yml +5 -1
- data/Gemfile +2 -1
- data/History.txt +4 -0
- data/README.md +9 -4
- data/Rakefile +28 -5
- data/acts_as_api.gemspec +1 -1
- data/lib/acts_as_api/api_template.rb +54 -63
- data/lib/acts_as_api/array.rb +2 -2
- data/lib/acts_as_api/base.rb +19 -13
- data/lib/acts_as_api/config.rb +2 -2
- data/lib/acts_as_api/rendering.rb +4 -4
- data/lib/acts_as_api/version.rb +1 -1
- data/spec/README.md +55 -0
- data/spec/active_record_dummy/.gitignore +15 -0
- data/spec/active_record_dummy/Gemfile +16 -0
- data/spec/active_record_dummy/README.rdoc +261 -0
- data/spec/active_record_dummy/Rakefile +7 -0
- data/spec/{rails_app/public → active_record_dummy/app/assets}/images/rails.png +0 -0
- data/spec/active_record_dummy/app/assets/javascripts/application.js +15 -0
- data/spec/active_record_dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/active_record_dummy/app/controllers/application_controller.rb +3 -0
- data/spec/{rails_app → active_record_dummy}/app/helpers/application_helper.rb +0 -0
- data/spec/{rails_app/lib/tasks → active_record_dummy/app/mailers}/.gitkeep +0 -0
- data/spec/{rails_app/public/stylesheets → active_record_dummy/app/models}/.gitkeep +0 -0
- data/spec/{rails_app → active_record_dummy}/app/models/profile.rb +1 -0
- data/spec/active_record_dummy/app/models/task.rb +4 -0
- data/spec/{rails_app → active_record_dummy}/app/models/untouched.rb +0 -0
- data/spec/{rails_app → active_record_dummy}/app/models/user.rb +1 -0
- data/spec/active_record_dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/active_record_dummy/config.ru +4 -0
- data/spec/active_record_dummy/config/application.rb +59 -0
- data/spec/{rails_app → active_record_dummy}/config/boot.rb +0 -0
- data/spec/{rails_app → active_record_dummy}/config/database.yml +5 -3
- data/spec/active_record_dummy/config/environment.rb +5 -0
- data/spec/active_record_dummy/config/environments/development.rb +37 -0
- data/spec/active_record_dummy/config/environments/production.rb +67 -0
- data/spec/active_record_dummy/config/environments/test.rb +37 -0
- data/spec/{rails_app → active_record_dummy}/config/initializers/backtrace_silencers.rb +0 -0
- data/spec/active_record_dummy/config/initializers/generators.rb +2 -0
- data/spec/{rails_app → active_record_dummy}/config/initializers/inflections.rb +5 -0
- data/spec/{rails_app → active_record_dummy}/config/initializers/mime_types.rb +0 -0
- data/spec/active_record_dummy/config/initializers/secret_token.rb +7 -0
- data/spec/active_record_dummy/config/initializers/session_store.rb +8 -0
- data/spec/active_record_dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/{rails_app → active_record_dummy}/config/locales/en.yml +1 -1
- data/spec/active_record_dummy/config/routes.rb +59 -0
- data/spec/{rails_app → active_record_dummy}/db/migrate/20110214201640_create_tables.rb +0 -0
- data/spec/{rails_app → active_record_dummy}/db/schema.rb +0 -0
- data/spec/{rails_app → active_record_dummy}/db/seeds.rb +0 -0
- data/spec/active_record_dummy/doc/README_FOR_APP +2 -0
- data/spec/{rails_app/public/favicon.ico → active_record_dummy/lib/assets/.gitkeep} +0 -0
- data/spec/active_record_dummy/lib/tasks/.gitkeep +0 -0
- data/spec/active_record_dummy/log/.gitkeep +0 -0
- data/spec/{rails_app → active_record_dummy}/public/404.html +0 -0
- data/spec/{rails_app → active_record_dummy}/public/422.html +0 -0
- data/spec/{rails_app → active_record_dummy}/public/500.html +0 -1
- data/spec/active_record_dummy/public/favicon.ico +0 -0
- data/spec/{rails_app → active_record_dummy}/public/index.html +10 -8
- data/spec/{rails_app → active_record_dummy}/public/robots.txt +0 -0
- data/spec/{rails_app → active_record_dummy}/script/rails +0 -0
- data/spec/active_record_dummy/vendor/assets/javascripts/.gitkeep +0 -0
- data/spec/active_record_dummy/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/active_record_dummy/vendor/plugins/.gitkeep +0 -0
- data/spec/controllers/respond_with_users_controller_spec.rb +18 -33
- data/spec/controllers/users_controller_spec.rb +8 -25
- data/spec/models/{active_record_spec.rb → model_spec.rb} +5 -3
- data/spec/mongoid_dummy/.gitignore +15 -0
- data/spec/mongoid_dummy/Gemfile +18 -0
- data/spec/mongoid_dummy/README.rdoc +261 -0
- data/spec/mongoid_dummy/Rakefile +7 -0
- data/spec/mongoid_dummy/app/assets/images/rails.png +0 -0
- data/spec/mongoid_dummy/app/assets/javascripts/application.js +15 -0
- data/spec/mongoid_dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/mongoid_dummy/app/controllers/application_controller.rb +3 -0
- data/spec/mongoid_dummy/app/helpers/application_helper.rb +2 -0
- data/spec/mongoid_dummy/app/mailers/.gitkeep +0 -0
- data/spec/mongoid_dummy/app/models/.gitkeep +0 -0
- data/spec/{rails_app/app/models/mongo_profile.rb → mongoid_dummy/app/models/profile.rb} +2 -2
- data/spec/{rails_app/app/models/mongo_task.rb → mongoid_dummy/app/models/task.rb} +2 -2
- data/spec/{rails_app/app/models/mongo_untouched.rb → mongoid_dummy/app/models/untouched.rb} +1 -1
- data/spec/mongoid_dummy/app/models/user.rb +48 -0
- data/spec/mongoid_dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/mongoid_dummy/config.ru +4 -0
- data/spec/mongoid_dummy/config/application.rb +65 -0
- data/spec/mongoid_dummy/config/boot.rb +6 -0
- data/spec/mongoid_dummy/config/environment.rb +5 -0
- data/spec/{rails_app → mongoid_dummy}/config/environments/development.rb +10 -4
- data/spec/{rails_app → mongoid_dummy}/config/environments/production.rb +29 -14
- data/spec/{rails_app → mongoid_dummy}/config/environments/test.rb +8 -8
- data/spec/mongoid_dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/mongoid_dummy/config/initializers/generators.rb +2 -0
- data/spec/mongoid_dummy/config/initializers/include_acts_as_api.rb +3 -0
- data/spec/mongoid_dummy/config/initializers/inflections.rb +15 -0
- data/spec/mongoid_dummy/config/initializers/mime_types.rb +5 -0
- data/spec/mongoid_dummy/config/initializers/secret_token.rb +7 -0
- data/spec/mongoid_dummy/config/initializers/session_store.rb +8 -0
- data/spec/mongoid_dummy/config/initializers/wrap_parameters.rb +10 -0
- data/spec/mongoid_dummy/config/locales/en.yml +5 -0
- data/spec/{rails_app → mongoid_dummy}/config/mongoid.yml +8 -3
- data/spec/mongoid_dummy/config/routes.rb +59 -0
- data/spec/mongoid_dummy/db/seeds.rb +7 -0
- data/spec/mongoid_dummy/doc/README_FOR_APP +2 -0
- data/spec/mongoid_dummy/lib/assets/.gitkeep +0 -0
- data/spec/mongoid_dummy/lib/tasks/.gitkeep +0 -0
- data/spec/mongoid_dummy/log/.gitkeep +0 -0
- data/spec/mongoid_dummy/public/404.html +26 -0
- data/spec/mongoid_dummy/public/422.html +26 -0
- data/spec/mongoid_dummy/public/500.html +25 -0
- data/spec/mongoid_dummy/public/favicon.ico +0 -0
- data/spec/mongoid_dummy/public/index.html +241 -0
- data/spec/mongoid_dummy/public/robots.txt +5 -0
- data/spec/mongoid_dummy/script/rails +6 -0
- data/spec/mongoid_dummy/vendor/assets/javascripts/.gitkeep +0 -0
- data/spec/mongoid_dummy/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/mongoid_dummy/vendor/plugins/.gitkeep +0 -0
- data/spec/shared_engine/.gitignore +7 -0
- data/spec/shared_engine/Gemfile +14 -0
- data/spec/shared_engine/MIT-LICENSE +20 -0
- data/spec/shared_engine/README.rdoc +3 -0
- data/spec/shared_engine/Rakefile +29 -0
- data/spec/shared_engine/app/assets/images/shared_engine/.gitkeep +0 -0
- data/spec/shared_engine/app/assets/javascripts/shared_engine/application.js +15 -0
- data/spec/shared_engine/app/assets/stylesheets/shared_engine/application.css +13 -0
- data/spec/shared_engine/app/controllers/shared_engine/application_controller.rb +4 -0
- data/spec/shared_engine/app/controllers/shared_engine/respond_with_users_controller.rb +59 -0
- data/spec/shared_engine/app/controllers/shared_engine/users_controller.rb +71 -0
- data/spec/shared_engine/app/helpers/shared_engine/application_helper.rb +4 -0
- data/spec/shared_engine/app/models/user_template.rb +154 -0
- data/spec/shared_engine/app/views/layouts/shared_engine/application.html.erb +14 -0
- data/spec/{rails_app → shared_engine}/config/routes.rb +2 -4
- data/spec/shared_engine/dummy/README.rdoc +261 -0
- data/spec/{rails_app → shared_engine/dummy}/Rakefile +2 -2
- data/spec/shared_engine/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/shared_engine/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/shared_engine/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/shared_engine/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/shared_engine/dummy/app/mailers/.gitkeep +0 -0
- data/spec/shared_engine/dummy/app/models/.gitkeep +0 -0
- data/spec/shared_engine/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/{rails_app → shared_engine/dummy}/config.ru +1 -1
- data/spec/{rails_app → shared_engine/dummy}/config/application.rb +30 -10
- data/spec/shared_engine/dummy/config/boot.rb +10 -0
- data/spec/shared_engine/dummy/config/database.yml +25 -0
- data/spec/{rails_app → shared_engine/dummy}/config/environment.rb +1 -1
- data/spec/shared_engine/dummy/config/environments/development.rb +37 -0
- data/spec/shared_engine/dummy/config/environments/production.rb +67 -0
- data/spec/shared_engine/dummy/config/environments/test.rb +37 -0
- data/spec/shared_engine/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/shared_engine/dummy/config/initializers/inflections.rb +15 -0
- data/spec/shared_engine/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/{rails_app → shared_engine/dummy}/config/initializers/secret_token.rb +1 -1
- data/spec/{rails_app → shared_engine/dummy}/config/initializers/session_store.rb +2 -2
- data/spec/shared_engine/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/shared_engine/dummy/config/locales/en.yml +5 -0
- data/spec/shared_engine/dummy/config/routes.rb +4 -0
- data/spec/shared_engine/dummy/lib/assets/.gitkeep +0 -0
- data/spec/shared_engine/dummy/log/.gitkeep +0 -0
- data/spec/shared_engine/dummy/public/404.html +26 -0
- data/spec/shared_engine/dummy/public/422.html +26 -0
- data/spec/shared_engine/dummy/public/500.html +25 -0
- data/spec/shared_engine/dummy/public/favicon.ico +0 -0
- data/spec/shared_engine/dummy/script/rails +6 -0
- data/spec/shared_engine/lib/shared_engine.rb +4 -0
- data/spec/shared_engine/lib/shared_engine/engine.rb +5 -0
- data/spec/shared_engine/lib/shared_engine/version.rb +3 -0
- data/spec/shared_engine/lib/tasks/shared_engine_tasks.rake +4 -0
- data/spec/shared_engine/script/rails +8 -0
- data/spec/shared_engine/shared_engine.gemspec +22 -0
- data/spec/spec_helper.rb +16 -11
- data/spec/support/controller_examples.rb +35 -41
- data/spec/support/model_examples/associations.rb +13 -13
- data/spec/support/model_examples/enabled.rb +2 -2
- data/spec/support/model_examples/extending.rb +6 -6
- data/spec/support/model_examples/options.rb +53 -0
- data/spec/support/model_examples/untouched.rb +2 -2
- data/spec/support/simple_fixtures.rb +31 -59
- metadata +324 -132
- data/spec/models/mongoid_spec.rb +0 -29
- data/spec/models/vanilla_ruby_spec.rb +0 -31
- data/spec/rails_app/.gitignore +0 -4
- data/spec/rails_app/app/controllers/application_controller.rb +0 -11
- data/spec/rails_app/app/controllers/respond_with_users_controller.rb +0 -57
- data/spec/rails_app/app/controllers/users_controller.rb +0 -69
- data/spec/rails_app/app/models/mongo_user.rb +0 -192
- data/spec/rails_app/app/models/task.rb +0 -3
- data/spec/rails_app/app/models/vanilla_profile.rb +0 -16
- data/spec/rails_app/app/models/vanilla_task.rb +0 -16
- data/spec/rails_app/app/models/vanilla_untouched.rb +0 -2
- data/spec/rails_app/app/models/vanilla_user.rb +0 -195
- data/spec/rails_app/app/views/layouts/application.html.erb +0 -14
- data/spec/rails_app/config/initializers/acts_as_api_mongoid.rb +0 -6
- data/spec/rails_app/public/javascripts/application.js +0 -2
- data/spec/rails_app/public/javascripts/controls.js +0 -965
- data/spec/rails_app/public/javascripts/dragdrop.js +0 -974
- data/spec/rails_app/public/javascripts/effects.js +0 -1123
- data/spec/rails_app/public/javascripts/prototype.js +0 -6001
- data/spec/rails_app/public/javascripts/rails.js +0 -191
|
File without changes
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# SQLite version 3.x
|
|
2
2
|
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
3
6
|
development:
|
|
4
7
|
adapter: sqlite3
|
|
5
8
|
database: db/development.sqlite3
|
|
@@ -11,13 +14,12 @@ development:
|
|
|
11
14
|
# Do not set this db to the same as development or production.
|
|
12
15
|
test:
|
|
13
16
|
adapter: sqlite3
|
|
14
|
-
database:
|
|
17
|
+
database: db/test.sqlite3
|
|
15
18
|
pool: 5
|
|
16
19
|
timeout: 5000
|
|
17
20
|
|
|
18
21
|
production:
|
|
19
22
|
adapter: sqlite3
|
|
20
|
-
database:
|
|
23
|
+
database: db/production.sqlite3
|
|
21
24
|
pool: 5
|
|
22
25
|
timeout: 5000
|
|
23
|
-
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
ActiveRecordDummy::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
|
+
# Raise exception on mass assignment protection for Active Record models
|
|
26
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
|
27
|
+
|
|
28
|
+
# Log the query plan for queries taking more than this (works
|
|
29
|
+
# with SQLite, MySQL, and PostgreSQL)
|
|
30
|
+
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
|
31
|
+
|
|
32
|
+
# Do not compress assets
|
|
33
|
+
config.assets.compress = false
|
|
34
|
+
|
|
35
|
+
# Expands the lines which load the assets
|
|
36
|
+
config.assets.debug = true
|
|
37
|
+
end
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
ActiveRecordDummy::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
|
+
# Prepend all log lines with the following tags
|
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
|
38
|
+
|
|
39
|
+
# Use a different logger for distributed setups
|
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
|
41
|
+
|
|
42
|
+
# Use a different cache store in production
|
|
43
|
+
# config.cache_store = :mem_cache_store
|
|
44
|
+
|
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
|
47
|
+
|
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
|
49
|
+
# config.assets.precompile += %w( search.js )
|
|
50
|
+
|
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
53
|
+
|
|
54
|
+
# Enable threaded mode
|
|
55
|
+
# config.threadsafe!
|
|
56
|
+
|
|
57
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
58
|
+
# the I18n.default_locale when a translation can not be found)
|
|
59
|
+
config.i18n.fallbacks = true
|
|
60
|
+
|
|
61
|
+
# Send deprecation notices to registered listeners
|
|
62
|
+
config.active_support.deprecation = :notify
|
|
63
|
+
|
|
64
|
+
# Log the query plan for queries taking more than this (works
|
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
|
67
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
ActiveRecordDummy::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
|
+
# Raise exception on mass assignment protection for Active Record models
|
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
|
34
|
+
|
|
35
|
+
# Print deprecation notices to the stderr
|
|
36
|
+
config.active_support.deprecation = :stderr
|
|
37
|
+
end
|
|
File without changes
|
|
File without changes
|
|
@@ -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
|
+
ActiveRecordDummy::Application.config.secret_token = '937dff1ad181db43bc2170d1d12ae4bff955f0b2a657d6e2cfa006976ed6e4311de228e9321fc530ff00157be4189022b715832ffb0c6fa8be12e7185b41d7a4'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
ActiveRecordDummy::Application.config.session_store :cookie_store, :key => '_active_record_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
|
+
# ActiveRecordDummy::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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Sample localization file for English. Add more files in this directory for other locales.
|
|
2
|
-
# See
|
|
2
|
+
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
|
3
3
|
|
|
4
4
|
en:
|
|
5
5
|
hello: "Hello world"
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
ActiveRecordDummy::Application.routes.draw do
|
|
2
|
+
mount SharedEngine::Engine => "/shared", :as => "shared"
|
|
3
|
+
# The priority is based upon order of creation:
|
|
4
|
+
# first created -> highest priority.
|
|
5
|
+
|
|
6
|
+
# Sample of regular route:
|
|
7
|
+
# match 'products/:id' => 'catalog#view'
|
|
8
|
+
# Keep in mind you can assign values other than :controller and :action
|
|
9
|
+
|
|
10
|
+
# Sample of named route:
|
|
11
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
|
12
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
|
13
|
+
|
|
14
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
|
15
|
+
# resources :products
|
|
16
|
+
|
|
17
|
+
# Sample resource route with options:
|
|
18
|
+
# resources :products do
|
|
19
|
+
# member do
|
|
20
|
+
# get 'short'
|
|
21
|
+
# post 'toggle'
|
|
22
|
+
# end
|
|
23
|
+
#
|
|
24
|
+
# collection do
|
|
25
|
+
# get 'sold'
|
|
26
|
+
# end
|
|
27
|
+
# end
|
|
28
|
+
|
|
29
|
+
# Sample resource route with sub-resources:
|
|
30
|
+
# resources :products do
|
|
31
|
+
# resources :comments, :sales
|
|
32
|
+
# resource :seller
|
|
33
|
+
# end
|
|
34
|
+
|
|
35
|
+
# Sample resource route with more complex sub-resources
|
|
36
|
+
# resources :products do
|
|
37
|
+
# resources :comments
|
|
38
|
+
# resources :sales do
|
|
39
|
+
# get 'recent', :on => :collection
|
|
40
|
+
# end
|
|
41
|
+
# end
|
|
42
|
+
|
|
43
|
+
# Sample resource route within a namespace:
|
|
44
|
+
# namespace :admin do
|
|
45
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
|
46
|
+
# # (app/controllers/admin/products_controller.rb)
|
|
47
|
+
# resources :products
|
|
48
|
+
# end
|
|
49
|
+
|
|
50
|
+
# You can have the root of your site routed with "root"
|
|
51
|
+
# just remember to delete public/index.html.
|
|
52
|
+
# root :to => 'welcome#index'
|
|
53
|
+
|
|
54
|
+
# See how all your routes lay out with "rake routes"
|
|
55
|
+
|
|
56
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
|
57
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
|
58
|
+
# match ':controller(/:action(/:id))(.:format)'
|
|
59
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
clear: both;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
|
|
56
55
|
#header, #about, #getting-started {
|
|
57
56
|
padding-left: 75px;
|
|
58
57
|
padding-right: 30px;
|
|
@@ -60,7 +59,7 @@
|
|
|
60
59
|
|
|
61
60
|
|
|
62
61
|
#header {
|
|
63
|
-
background-image: url("
|
|
62
|
+
background-image: url("assets/rails.png");
|
|
64
63
|
background-repeat: no-repeat;
|
|
65
64
|
background-position: top left;
|
|
66
65
|
height: 64px;
|
|
@@ -168,6 +167,9 @@
|
|
|
168
167
|
margin-bottom: 5px;
|
|
169
168
|
}
|
|
170
169
|
|
|
170
|
+
.filename {
|
|
171
|
+
font-style: italic;
|
|
172
|
+
}
|
|
171
173
|
</style>
|
|
172
174
|
<script type="text/javascript">
|
|
173
175
|
function about() {
|
|
@@ -190,10 +192,10 @@
|
|
|
190
192
|
<li>
|
|
191
193
|
<h3>Browse the documentation</h3>
|
|
192
194
|
<ul class="links">
|
|
193
|
-
<li><a href="http://api.rubyonrails.org/">Rails API</a></li>
|
|
194
|
-
<li><a href="http://stdlib.rubyonrails.org/">Ruby standard library</a></li>
|
|
195
|
-
<li><a href="http://corelib.rubyonrails.org/">Ruby core</a></li>
|
|
196
195
|
<li><a href="http://guides.rubyonrails.org/">Rails Guides</a></li>
|
|
196
|
+
<li><a href="http://api.rubyonrails.org/">Rails API</a></li>
|
|
197
|
+
<li><a href="http://www.ruby-doc.org/core/">Ruby core</a></li>
|
|
198
|
+
<li><a href="http://www.ruby-doc.org/stdlib/">Ruby standard library</a></li>
|
|
197
199
|
</ul>
|
|
198
200
|
</li>
|
|
199
201
|
</ul>
|
|
@@ -221,13 +223,13 @@
|
|
|
221
223
|
</li>
|
|
222
224
|
|
|
223
225
|
<li>
|
|
224
|
-
<h2>Set up a default route and remove
|
|
225
|
-
<p>Routes are set up in config/routes.rb
|
|
226
|
+
<h2>Set up a default route and remove <span class="filename">public/index.html</span></h2>
|
|
227
|
+
<p>Routes are set up in <span class="filename">config/routes.rb</span>.</p>
|
|
226
228
|
</li>
|
|
227
229
|
|
|
228
230
|
<li>
|
|
229
231
|
<h2>Create your database</h2>
|
|
230
|
-
<p>Run <code>rake db:
|
|
232
|
+
<p>Run <code>rake db:create</code> to create your database. If you're not using SQLite (the default), edit <span class="filename">config/database.yml</span> with your username and password.</p>
|
|
231
233
|
</li>
|
|
232
234
|
</ol>
|
|
233
235
|
</div>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,35 +1,21 @@
|
|
|
1
1
|
require 'spec_helper'
|
|
2
|
+
#
|
|
3
|
+
# RSpec.configure do |config|
|
|
4
|
+
# config.include SharedEngine::Engine.routes.url_helpers
|
|
5
|
+
# end
|
|
2
6
|
|
|
3
|
-
describe RespondWithUsersController do
|
|
7
|
+
describe SharedEngine::RespondWithUsersController do
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
before(:each) do
|
|
8
|
-
setup_active_record_models
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
after(:each) do
|
|
12
|
-
clean_up_active_record_models
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
# see spec/support/controller_examples.rb
|
|
16
|
-
it_behaves_like "a controller with ActsAsApi responses"
|
|
9
|
+
before(:each) do
|
|
10
|
+
setup_models
|
|
17
11
|
end
|
|
18
12
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
before(:each) do
|
|
22
|
-
setup_mongoid_models
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
after(:each) do
|
|
26
|
-
clean_up_mongoid_models
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
# see spec/support/controller_examples.rb
|
|
30
|
-
it_behaves_like "a controller with ActsAsApi responses"
|
|
13
|
+
after(:each) do
|
|
14
|
+
clean_up_models
|
|
31
15
|
end
|
|
32
16
|
|
|
17
|
+
# see spec/support/controller_examples.rb
|
|
18
|
+
it_behaves_like "a controller with ActsAsApi responses"
|
|
33
19
|
|
|
34
20
|
describe "default ActionController::Responder behavior" do
|
|
35
21
|
|
|
@@ -38,7 +24,7 @@ describe RespondWithUsersController do
|
|
|
38
24
|
context "creating valid models" do
|
|
39
25
|
|
|
40
26
|
before(:each) do
|
|
41
|
-
post :create, :user => { :first_name => "Luke", :last_name => "Skywalker" }, :api_template => :name_only, :format => 'json'
|
|
27
|
+
post :create, :user => { :first_name => "Luke", :last_name => "Skywalker" }, :api_template => :name_only, :format => 'json'
|
|
42
28
|
end
|
|
43
29
|
|
|
44
30
|
it "should return HTTP 201 status" do
|
|
@@ -59,7 +45,7 @@ describe RespondWithUsersController do
|
|
|
59
45
|
context "creating invalid models" do
|
|
60
46
|
|
|
61
47
|
before(:each) do
|
|
62
|
-
post :create, :user => {}, :api_template => :name_only, :format => 'json'
|
|
48
|
+
post :create, :user => {}, :api_template => :name_only, :format => 'json'
|
|
63
49
|
end
|
|
64
50
|
|
|
65
51
|
it "should return HTTP 422 status" do
|
|
@@ -67,8 +53,8 @@ describe RespondWithUsersController do
|
|
|
67
53
|
end
|
|
68
54
|
|
|
69
55
|
it "should return errors as json" do
|
|
70
|
-
response_body_json['first_name'].should include("can't be blank")
|
|
71
|
-
response_body_json['last_name'].should include("can't be blank")
|
|
56
|
+
response_body_json['errors']['first_name'].should include("can't be blank")
|
|
57
|
+
response_body_json['errors']['last_name'].should include("can't be blank")
|
|
72
58
|
end
|
|
73
59
|
|
|
74
60
|
end
|
|
@@ -80,7 +66,7 @@ describe RespondWithUsersController do
|
|
|
80
66
|
context "creating valid models" do
|
|
81
67
|
|
|
82
68
|
before(:each) do
|
|
83
|
-
post :create, :user => { :first_name => "Luke", :last_name => "Skywalker" }, :api_template => :name_only, :format => 'xml'
|
|
69
|
+
post :create, :user => { :first_name => "Luke", :last_name => "Skywalker" }, :api_template => :name_only, :format => 'xml'
|
|
84
70
|
end
|
|
85
71
|
|
|
86
72
|
it "should return HTTP 201 status" do
|
|
@@ -88,7 +74,7 @@ describe RespondWithUsersController do
|
|
|
88
74
|
end
|
|
89
75
|
|
|
90
76
|
it "should include HTTP Location header" do
|
|
91
|
-
response.headers["Location"].should
|
|
77
|
+
response.headers["Location"].should match "/shared/users/#{User.last.id}"
|
|
92
78
|
end
|
|
93
79
|
|
|
94
80
|
it "should contain the specified attributes" do
|
|
@@ -101,7 +87,7 @@ describe RespondWithUsersController do
|
|
|
101
87
|
context "creating invalid models" do
|
|
102
88
|
|
|
103
89
|
before(:each) do
|
|
104
|
-
post :create, :user => {}, :api_template => :name_only, :format => 'xml'
|
|
90
|
+
post :create, :user => {}, :api_template => :name_only, :format => 'xml'
|
|
105
91
|
end
|
|
106
92
|
|
|
107
93
|
it "should return HTTP 422 status" do
|
|
@@ -117,5 +103,4 @@ describe RespondWithUsersController do
|
|
|
117
103
|
|
|
118
104
|
end
|
|
119
105
|
|
|
120
|
-
|
|
121
106
|
end
|