json_voorhees 0.0.2 → 0.1.0
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.
- checksums.yaml +4 -4
- data/README.md +52 -4
- data/lib/generators/json_voorhees/app_make_authorizations/USAGE +1 -1
- data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +1 -0
- data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +8 -1
- data/lib/generators/json_voorhees/app_make_tests/USAGE +1 -1
- data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +26 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +3 -1
- data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +5 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/no_auth_request.rb.erb +90 -0
- data/lib/generators/json_voorhees/app_scaffold/USAGE +9 -0
- data/lib/generators/json_voorhees/app_scaffold/app_scaffold_generator.rb +22 -0
- data/lib/generators/json_voorhees/engine_create_controller/USAGE +1 -1
- data/lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb +11 -0
- data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +1 -1
- data/lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb +1 -1
- data/lib/generators/json_voorhees/engine_create_serializer/USAGE +1 -1
- data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +1 -0
- data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +13 -0
- data/lib/generators/json_voorhees/engine_scaffold/USAGE +9 -0
- data/lib/generators/json_voorhees/engine_scaffold/engine_scaffold_generator.rb +18 -0
- data/lib/generators/json_voorhees/massive_scaffold/USAGE +10 -0
- data/lib/generators/json_voorhees/massive_scaffold/massive_scaffold_generator.rb +23 -0
- data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +10 -0
- data/lib/json_voorhees/version.rb +1 -1
- data/test/lib/generators/json_voorhees/app_scaffold_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/engine_scaffold_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/massive_scaffold_generator_test.rb +16 -0
- data/test/test_app/Gemfile +23 -0
- data/test/test_app/Gemfile.lock +99 -1
- data/test/test_app/README.md +1 -0
- data/test/test_app/app/controllers/api/v1/api_controller.rb +26 -0
- data/test/test_app/app/controllers/app_index_controller.rb +4 -0
- data/test/test_app/app/controllers/application_controller.rb +5 -0
- data/test/test_app/app/controllers/main_controller.rb +4 -0
- data/test/test_app/app/views/app_index/app.html.erb +0 -0
- data/test/test_app/app/views/layouts/app_index.html.erb +9 -0
- data/test/test_app/app/views/layouts/application.html.erb +8 -3
- data/test/test_app/app/views/main/admin.html.erb +9 -0
- data/test/test_app/config/application.rb +4 -0
- data/test/test_app/config/routes.rb +8 -0
- data/test/test_app/db/development.sqlite3 +0 -0
- data/test/test_app/db/migrate/20140905145354_create_people_users.people.rb +12 -0
- data/test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb +12 -0
- data/test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb +6 -0
- data/test/test_app/db/production.sqlite3 +0 -0
- data/test/test_app/db/schema.rb +19 -1
- data/test/test_app/db/test.sqlite3 +0 -0
- data/test/test_app/engines/people/Gemfile +14 -0
- data/test/test_app/engines/people/Gemfile.lock +92 -0
- data/test/test_app/engines/people/MIT-LICENSE +20 -0
- data/test/test_app/engines/people/README.md +1 -0
- data/test/test_app/engines/people/Rakefile +34 -0
- data/test/test_app/engines/people/app/assets/javascripts/people/application.js +13 -0
- data/test/test_app/engines/people/app/assets/javascripts/people/users.js +2 -0
- data/test/test_app/engines/people/app/assets/stylesheets/people/application.css +15 -0
- data/test/test_app/engines/people/app/assets/stylesheets/people/users.css +4 -0
- data/test/test_app/engines/people/app/assets/stylesheets/scaffold.css +56 -0
- data/test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb +5 -0
- data/test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb +124 -0
- data/test/test_app/engines/people/app/controllers/people/application_controller.rb +4 -0
- data/test/test_app/engines/people/app/controllers/people/users_controller.rb +62 -0
- data/test/test_app/engines/people/app/helpers/people/application_helper.rb +4 -0
- data/test/test_app/engines/people/app/helpers/people/users_helper.rb +4 -0
- data/test/test_app/engines/people/app/models/people/user.rb +26 -0
- data/test/test_app/engines/people/app/serializers/people/user_serializer.rb +39 -0
- data/test/test_app/engines/people/app/views/layouts/people/default/application.html.erb +14 -0
- data/test/test_app/engines/people/app/views/people/users/_form.html.erb +29 -0
- data/test/test_app/engines/people/app/views/people/users/edit.html.erb +6 -0
- data/test/test_app/engines/people/app/views/people/users/index.html.erb +29 -0
- data/test/test_app/engines/people/app/views/people/users/new.html.erb +5 -0
- data/test/test_app/engines/people/app/views/people/users/show.html.erb +19 -0
- data/test/test_app/engines/people/bin/rails +12 -0
- data/test/test_app/engines/people/config/routes.rb +24 -0
- data/test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb +11 -0
- data/test/test_app/engines/people/lib/people/engine.rb +5 -0
- data/test/test_app/engines/people/lib/people/version.rb +3 -0
- data/test/test_app/engines/people/lib/people.rb +4 -0
- data/test/test_app/engines/people/lib/tasks/people_tasks.rake +4 -0
- data/test/test_app/engines/people/people.gemspec +31 -0
- data/test/test_app/engines/people/test/controllers/people/users_controller_test.rb +51 -0
- data/test/test_app/{README.rdoc → engines/people/test/dummy/README.rdoc} +0 -0
- data/test/test_app/engines/people/test/dummy/Rakefile +6 -0
- data/test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/test_app/engines/people/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/test_app/engines/people/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/test_app/engines/people/test/dummy/bin/bundle +3 -0
- data/test/test_app/engines/people/test/dummy/bin/rails +4 -0
- data/test/test_app/engines/people/test/dummy/bin/rake +4 -0
- data/test/test_app/engines/people/test/dummy/config/application.rb +23 -0
- data/test/test_app/engines/people/test/dummy/config/boot.rb +5 -0
- data/test/test_app/engines/people/test/dummy/config/database.yml +25 -0
- data/test/test_app/engines/people/test/dummy/config/environment.rb +5 -0
- data/test/test_app/engines/people/test/dummy/config/environments/development.rb +37 -0
- data/test/test_app/engines/people/test/dummy/config/environments/production.rb +82 -0
- data/test/test_app/engines/people/test/dummy/config/environments/test.rb +39 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/assets.rb +8 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_app/engines/people/test/dummy/config/locales/en.yml +23 -0
- data/test/test_app/engines/people/test/dummy/config/routes.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/secrets.yml +22 -0
- data/test/test_app/engines/people/test/dummy/config.ru +4 -0
- data/test/test_app/engines/people/test/dummy/db/schema.rb +24 -0
- data/test/test_app/engines/people/test/dummy/public/404.html +67 -0
- data/test/test_app/engines/people/test/dummy/public/422.html +67 -0
- data/test/test_app/engines/people/test/dummy/public/500.html +66 -0
- data/test/test_app/engines/people/test/dummy/public/favicon.ico +0 -0
- data/test/test_app/engines/people/test/fixtures/people/users.yml +11 -0
- data/test/test_app/engines/people/test/helpers/people/users_helper_test.rb +6 -0
- data/test/test_app/engines/people/test/integration/navigation_test.rb +10 -0
- data/test/test_app/engines/people/test/models/people/user_test.rb +9 -0
- data/test/test_app/engines/people/test/people_test.rb +7 -0
- data/test/test_app/engines/people/test/test_helper.rb +15 -0
- data/test/test_app/gems/authorization/Gemfile +14 -0
- data/test/test_app/gems/authorization/Gemfile.lock +92 -0
- data/test/test_app/gems/authorization/MIT-LICENSE +20 -0
- data/test/test_app/gems/authorization/README.rdoc +3 -0
- data/test/test_app/gems/authorization/Rakefile +32 -0
- data/test/test_app/gems/authorization/authorization.gemspec +23 -0
- data/test/test_app/gems/authorization/lib/authorization/people/user.rb +82 -0
- data/test/test_app/gems/authorization/lib/authorization/version.rb +3 -0
- data/test/test_app/gems/authorization/lib/authorization.rb +3 -0
- data/test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake +4 -0
- data/test/test_app/gems/authorization/test/authorization_test.rb +7 -0
- data/test/test_app/gems/authorization/test/dummy/README.rdoc +28 -0
- data/test/test_app/gems/authorization/test/dummy/Rakefile +6 -0
- data/test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/test_app/gems/authorization/test/dummy/bin/bundle +3 -0
- data/test/test_app/gems/authorization/test/dummy/bin/rails +4 -0
- data/test/test_app/gems/authorization/test/dummy/bin/rake +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/application.rb +23 -0
- data/test/test_app/gems/authorization/test/dummy/config/boot.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/config/database.yml +25 -0
- data/test/test_app/gems/authorization/test/dummy/config/environment.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/development.rb +37 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/production.rb +82 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/test.rb +39 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb +8 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_app/gems/authorization/test/dummy/config/locales/en.yml +23 -0
- data/test/test_app/gems/authorization/test/dummy/config/routes.rb +56 -0
- data/test/test_app/gems/authorization/test/dummy/config/secrets.yml +22 -0
- data/test/test_app/gems/authorization/test/dummy/config.ru +4 -0
- data/test/test_app/gems/authorization/test/dummy/public/404.html +67 -0
- data/test/test_app/gems/authorization/test/dummy/public/422.html +67 -0
- data/test/test_app/gems/authorization/test/dummy/public/500.html +66 -0
- data/test/test_app/gems/authorization/test/dummy/public/favicon.ico +0 -0
- data/test/test_app/gems/authorization/test/test_helper.rb +15 -0
- data/test/test_app/log/development.log +195 -0
- data/test/test_app/log/production.log +20 -0
- data/test/test_app/log/test.log +8427 -0
- data/test/test_app/spec/controllers/app_index_controller_spec.rb +12 -0
- data/test/test_app/spec/engines/people/api/v1/models/user_spec.rb +59 -0
- data/test/test_app/spec/engines/people/api/v1/requests/user_spec.rb +154 -0
- data/test/test_app/spec/engines/people/api/v1/routing/user_spec.rb +77 -0
- data/test/test_app/spec/factories/people_user_factory.rb +14 -0
- data/test/test_app/spec/rails_helper.rb +47 -0
- data/test/test_app/spec/spec_helper.rb +78 -0
- data/test/test_app/spec/support/factory_girl.rb +16 -0
- data/test/test_app/spec/support/request_helpers.rb +7 -0
- metadata +293 -6
- data/test/test_app/test/test_helper.rb +0 -10
@@ -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] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Rails.application.routes.draw do
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
3
|
+
# See how all your routes lay out with "rake routes".
|
4
|
+
|
5
|
+
# You can have the root of your site routed with "root"
|
6
|
+
# root 'welcome#index'
|
7
|
+
|
8
|
+
# Example of regular route:
|
9
|
+
# get 'products/:id' => 'catalog#view'
|
10
|
+
|
11
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
12
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
13
|
+
|
14
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
15
|
+
# resources :products
|
16
|
+
|
17
|
+
# Example 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
|
+
# Example resource route with sub-resources:
|
30
|
+
# resources :products do
|
31
|
+
# resources :comments, :sales
|
32
|
+
# resource :seller
|
33
|
+
# end
|
34
|
+
|
35
|
+
# Example 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
|
+
# Example resource route with concerns:
|
44
|
+
# concern :toggleable do
|
45
|
+
# post 'toggle'
|
46
|
+
# end
|
47
|
+
# resources :posts, concerns: :toggleable
|
48
|
+
# resources :photos, concerns: :toggleable
|
49
|
+
|
50
|
+
# Example resource route within a namespace:
|
51
|
+
# namespace :admin do
|
52
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
53
|
+
# # (app/controllers/admin/products_controller.rb)
|
54
|
+
# resources :products
|
55
|
+
# end
|
56
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: a19522759fe1939b2dca100afbd97882729119db4a8eccf5043081562b1afdb1316b9527f15e353444f2a4bda7032c0a17200d011c8342b9234765f0d5ed8e32
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 493dfac57cd879eec66e0f7dcbb383de14576022a017992da234d316ecc8b61997323c3fd2e6691788b6093474ddf49480ec7a3ceb9310aaadf4f7c1b04342e1
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
5
|
+
require "rails/test_help"
|
6
|
+
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
8
|
+
|
9
|
+
# Load support files
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
|
+
|
12
|
+
# Load fixtures from the engine
|
13
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
14
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
|
+
end
|
@@ -1515,3 +1515,198 @@ Migrating to CreateSchoolTeachers (20140905011102)
|
|
1515
1515
|
FROM sqlite_temp_master
|
1516
1516
|
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1517
1517
|
[0m
|
1518
|
+
[1m[36m (184.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1519
|
+
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
1520
|
+
[1m[36m (198.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1521
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.7ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1522
|
+
Migrating to CreatePeopleUsers (20140905144326)
|
1523
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1524
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1525
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905144326"]]
|
1526
|
+
[1m[35m (171.5ms)[0m commit transaction
|
1527
|
+
Migrating to CreateArcadexTokens (20140905144327)
|
1528
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1529
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1530
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905144327"]]
|
1531
|
+
[1m[35m (179.5ms)[0m commit transaction
|
1532
|
+
Migrating to AddIndexToToken (20140905144328)
|
1533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1534
|
+
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1535
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905144328"]]
|
1536
|
+
[1m[35m (152.2ms)[0m commit transaction
|
1537
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1538
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1539
|
+
FROM sqlite_master
|
1540
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1541
|
+
UNION ALL
|
1542
|
+
SELECT sql
|
1543
|
+
FROM sqlite_temp_master
|
1544
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1545
|
+
|
1546
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1547
|
+
Migrating to CreateOceanAtlantics (20140905144813)
|
1548
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1549
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "ocean_atlantics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "cold" integer, "created_at" datetime, "updated_at" datetime) [0m
|
1550
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905144813"]]
|
1551
|
+
[1m[36m (141.7ms)[0m [1mcommit transaction[0m
|
1552
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1553
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1554
|
+
FROM sqlite_master
|
1555
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1556
|
+
UNION ALL
|
1557
|
+
SELECT sql
|
1558
|
+
FROM sqlite_temp_master
|
1559
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1560
|
+
[0m
|
1561
|
+
[1m[36m (136.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1562
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1563
|
+
[1m[36m (142.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1564
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1565
|
+
Migrating to CreatePeopleUsers (20140905145354)
|
1566
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1567
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1568
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145354"]]
|
1569
|
+
[1m[35m (167.8ms)[0m commit transaction
|
1570
|
+
Migrating to CreateArcadexTokens (20140905145355)
|
1571
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1572
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1573
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145355"]]
|
1574
|
+
[1m[35m (192.4ms)[0m commit transaction
|
1575
|
+
Migrating to AddIndexToToken (20140905145356)
|
1576
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1577
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1578
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145356"]]
|
1579
|
+
[1m[35m (190.2ms)[0m commit transaction
|
1580
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1581
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1582
|
+
FROM sqlite_master
|
1583
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1584
|
+
UNION ALL
|
1585
|
+
SELECT sql
|
1586
|
+
FROM sqlite_temp_master
|
1587
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1588
|
+
|
1589
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1590
|
+
Migrating to CreateOceanAtlantics (20140905151013)
|
1591
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1592
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "ocean_atlantics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coldness" integer, "created_at" datetime, "updated_at" datetime) [0m
|
1593
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905151013"]]
|
1594
|
+
[1m[36m (186.1ms)[0m [1mcommit transaction[0m
|
1595
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1596
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1597
|
+
FROM sqlite_master
|
1598
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1599
|
+
UNION ALL
|
1600
|
+
SELECT sql
|
1601
|
+
FROM sqlite_temp_master
|
1602
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1603
|
+
[0m
|
1604
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1605
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1606
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1607
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1608
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1609
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1610
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1611
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1612
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1613
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1614
|
+
[1m[36m (154.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1615
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1616
|
+
[1m[36m (152.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1617
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1618
|
+
Migrating to CreatePeopleUsers (20140905145354)
|
1619
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1620
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1621
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145354"]]
|
1622
|
+
[1m[35m (148.8ms)[0m commit transaction
|
1623
|
+
Migrating to CreateArcadexTokens (20140905145355)
|
1624
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1625
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1626
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145355"]]
|
1627
|
+
[1m[35m (190.5ms)[0m commit transaction
|
1628
|
+
Migrating to AddIndexToToken (20140905145356)
|
1629
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1630
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1631
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145356"]]
|
1632
|
+
[1m[35m (158.6ms)[0m commit transaction
|
1633
|
+
Migrating to CreatePeopleJacksons (20140905202005)
|
1634
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1635
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "people_jacksons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coldness" integer, "depth" integer, "currents" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1636
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905202005"]]
|
1637
|
+
[1m[35m (157.2ms)[0m commit transaction
|
1638
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1639
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1640
|
+
FROM sqlite_master
|
1641
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1642
|
+
UNION ALL
|
1643
|
+
SELECT sql
|
1644
|
+
FROM sqlite_temp_master
|
1645
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1646
|
+
|
1647
|
+
[1m[36m (138.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1648
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1649
|
+
[1m[36m (142.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1650
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1651
|
+
Migrating to CreatePeopleUsers (20140905145354)
|
1652
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1653
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1654
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145354"]]
|
1655
|
+
[1m[35m (246.9ms)[0m commit transaction
|
1656
|
+
Migrating to CreateArcadexTokens (20140905145355)
|
1657
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1658
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1659
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145355"]]
|
1660
|
+
[1m[35m (168.4ms)[0m commit transaction
|
1661
|
+
Migrating to AddIndexToToken (20140905145356)
|
1662
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1663
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1664
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145356"]]
|
1665
|
+
[1m[35m (179.4ms)[0m commit transaction
|
1666
|
+
Migrating to CreatePeopleJacksons (20140905203320)
|
1667
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1668
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "people_jacksons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coldness" integer, "depth" integer, "currents" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1669
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905203320"]]
|
1670
|
+
[1m[35m (140.3ms)[0m commit transaction
|
1671
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1672
|
+
[1m[35m (0.3ms)[0m SELECT sql
|
1673
|
+
FROM sqlite_master
|
1674
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1675
|
+
UNION ALL
|
1676
|
+
SELECT sql
|
1677
|
+
FROM sqlite_temp_master
|
1678
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1679
|
+
|
1680
|
+
[1m[36m (140.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1681
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1682
|
+
[1m[36m (153.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1683
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1684
|
+
Migrating to CreatePeopleUsers (20140905145354)
|
1685
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1686
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1687
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145354"]]
|
1688
|
+
[1m[35m (139.8ms)[0m commit transaction
|
1689
|
+
Migrating to CreateArcadexTokens (20140905145355)
|
1690
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1691
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1692
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145355"]]
|
1693
|
+
[1m[35m (141.1ms)[0m commit transaction
|
1694
|
+
Migrating to AddIndexToToken (20140905145356)
|
1695
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1696
|
+
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1697
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905145356"]]
|
1698
|
+
[1m[35m (141.0ms)[0m commit transaction
|
1699
|
+
Migrating to CreatePeopleJacksons (20140905223400)
|
1700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1701
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "people_jacksons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coldness" integer, "depth" integer, "currents" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1702
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905223400"]]
|
1703
|
+
[1m[35m (184.2ms)[0m commit transaction
|
1704
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1705
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1706
|
+
FROM sqlite_master
|
1707
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1708
|
+
UNION ALL
|
1709
|
+
SELECT sql
|
1710
|
+
FROM sqlite_temp_master
|
1711
|
+
WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
|
1712
|
+
|
@@ -66,3 +66,23 @@ I, [2014-09-04T21:01:53.023673 #3491] INFO -- : Migrating to CreatePeopleUsers
|
|
66
66
|
I, [2014-09-04T21:01:53.143147 #3491] INFO -- : Migrating to CreateArcadexTokens (20140905010143)
|
67
67
|
I, [2014-09-04T21:01:53.265294 #3491] INFO -- : Migrating to AddIndexToToken (20140905010144)
|
68
68
|
I, [2014-09-04T21:11:12.428673 #4512] INFO -- : Migrating to CreateSchoolTeachers (20140905011102)
|
69
|
+
I, [2014-09-05T10:43:36.262886 #14084] INFO -- : Migrating to CreatePeopleUsers (20140905144326)
|
70
|
+
I, [2014-09-05T10:43:36.445825 #14084] INFO -- : Migrating to CreateArcadexTokens (20140905144327)
|
71
|
+
I, [2014-09-05T10:43:36.656820 #14084] INFO -- : Migrating to AddIndexToToken (20140905144328)
|
72
|
+
I, [2014-09-05T10:48:22.844065 #14751] INFO -- : Migrating to CreateOceanAtlantics (20140905144813)
|
73
|
+
I, [2014-09-05T10:54:05.120153 #15621] INFO -- : Migrating to CreatePeopleUsers (20140905145354)
|
74
|
+
I, [2014-09-05T10:54:05.281288 #15621] INFO -- : Migrating to CreateArcadexTokens (20140905145355)
|
75
|
+
I, [2014-09-05T10:54:05.447947 #15621] INFO -- : Migrating to AddIndexToToken (20140905145356)
|
76
|
+
I, [2014-09-05T11:10:22.639559 #17009] INFO -- : Migrating to CreateOceanAtlantics (20140905151013)
|
77
|
+
I, [2014-09-05T16:20:16.410687 #30980] INFO -- : Migrating to CreatePeopleUsers (20140905145354)
|
78
|
+
I, [2014-09-05T16:20:16.584063 #30980] INFO -- : Migrating to CreateArcadexTokens (20140905145355)
|
79
|
+
I, [2014-09-05T16:20:16.784037 #30980] INFO -- : Migrating to AddIndexToToken (20140905145356)
|
80
|
+
I, [2014-09-05T16:20:16.950851 #30980] INFO -- : Migrating to CreatePeopleJacksons (20140905202005)
|
81
|
+
I, [2014-09-05T16:33:31.102508 #31744] INFO -- : Migrating to CreatePeopleUsers (20140905145354)
|
82
|
+
I, [2014-09-05T16:33:31.274776 #31744] INFO -- : Migrating to CreateArcadexTokens (20140905145355)
|
83
|
+
I, [2014-09-05T16:33:31.442770 #31744] INFO -- : Migrating to AddIndexToToken (20140905145356)
|
84
|
+
I, [2014-09-05T16:33:31.609645 #31744] INFO -- : Migrating to CreatePeopleJacksons (20140905203320)
|
85
|
+
I, [2014-09-05T18:34:11.339772 #8960] INFO -- : Migrating to CreatePeopleUsers (20140905145354)
|
86
|
+
I, [2014-09-05T18:34:11.515676 #8960] INFO -- : Migrating to CreateArcadexTokens (20140905145355)
|
87
|
+
I, [2014-09-05T18:34:11.705289 #8960] INFO -- : Migrating to AddIndexToToken (20140905145356)
|
88
|
+
I, [2014-09-05T18:34:11.894139 #8960] INFO -- : Migrating to CreatePeopleJacksons (20140905223400)
|