dq_admin 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.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +52 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +173 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +28 -0
  7. data/Rakefile +36 -0
  8. data/app/assets/config/dq_admin_manifest.js +2 -0
  9. data/app/assets/images/dq_admin/.keep +0 -0
  10. data/app/assets/javascripts/dq_admin/application.js +14 -0
  11. data/app/assets/javascripts/dq_admin/dashboard.js +2 -0
  12. data/app/assets/javascripts/dq_admin/fields.js +2 -0
  13. data/app/assets/javascripts/dq_admin/products.js +2 -0
  14. data/app/assets/javascripts/dq_admin/users.js +2 -0
  15. data/app/assets/stylesheets/dq_admin/application.css +48 -0
  16. data/app/assets/stylesheets/dq_admin/dashboard.css +4 -0
  17. data/app/assets/stylesheets/dq_admin/fields.css +4 -0
  18. data/app/assets/stylesheets/dq_admin/products.css +4 -0
  19. data/app/assets/stylesheets/dq_admin/users.css +4 -0
  20. data/app/controllers/dq_admin/application_controller.rb +19 -0
  21. data/app/controllers/dq_admin/dashboard_controller.rb +6 -0
  22. data/app/controllers/dq_admin/fields_controller.rb +6 -0
  23. data/app/controllers/dq_admin/products_controller.rb +31 -0
  24. data/app/controllers/dq_admin/users_controller.rb +58 -0
  25. data/app/helpers/dq_admin/application_helper.rb +12 -0
  26. data/app/helpers/dq_admin/dashboard_helper.rb +4 -0
  27. data/app/helpers/dq_admin/fields_helper.rb +4 -0
  28. data/app/helpers/dq_admin/products_helper.rb +4 -0
  29. data/app/helpers/dq_admin/users_helper.rb +4 -0
  30. data/app/jobs/dq_admin/application_job.rb +4 -0
  31. data/app/mailers/dq_admin/application_mailer.rb +6 -0
  32. data/app/models/dq_admin/application_record.rb +5 -0
  33. data/app/models/dq_admin/article.rb +4 -0
  34. data/app/models/dq_admin/field.rb +13 -0
  35. data/app/models/dq_admin/product.rb +4 -0
  36. data/app/models/dq_admin/setting.rb +9 -0
  37. data/app/models/dq_admin/slide.rb +4 -0
  38. data/app/models/dq_admin/user.rb +30 -0
  39. data/app/services/dq_admin/field_service.rb +50 -0
  40. data/app/views/devise/confirmations/new.html.erb +16 -0
  41. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  42. data/app/views/devise/mailer/email_changed.html.erb +7 -0
  43. data/app/views/devise/mailer/password_change.html.erb +3 -0
  44. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  45. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  46. data/app/views/devise/passwords/edit.html.erb +25 -0
  47. data/app/views/devise/passwords/new.html.erb +16 -0
  48. data/app/views/devise/registrations/edit.html.erb +43 -0
  49. data/app/views/devise/registrations/new.html.erb +29 -0
  50. data/app/views/devise/sessions/new.html.erb +35 -0
  51. data/app/views/devise/shared/_links.html.erb +25 -0
  52. data/app/views/devise/unlocks/new.html.erb +16 -0
  53. data/app/views/dq_admin/dashboard/index.html.erb +9 -0
  54. data/app/views/dq_admin/products/edit.html.erb +0 -0
  55. data/app/views/dq_admin/products/index.html.erb +54 -0
  56. data/app/views/dq_admin/products/new.html.erb +0 -0
  57. data/app/views/dq_admin/shared/_slidebar.html.erb +0 -0
  58. data/app/views/dq_admin/users/_form.html.erb +0 -0
  59. data/app/views/dq_admin/users/edit.html.erb +37 -0
  60. data/app/views/dq_admin/users/index.html.erb +53 -0
  61. data/app/views/dq_admin/users/new.html.erb +37 -0
  62. data/app/views/kaminari/_first_page.html.erb +3 -0
  63. data/app/views/kaminari/_gap.html.erb +3 -0
  64. data/app/views/kaminari/_last_page.html.erb +3 -0
  65. data/app/views/kaminari/_next_page.html.erb +3 -0
  66. data/app/views/kaminari/_page.html.erb +9 -0
  67. data/app/views/kaminari/_paginator.html.erb +15 -0
  68. data/app/views/kaminari/_prev_page.html.erb +3 -0
  69. data/app/views/layouts/dq_admin/application.html.erb +93 -0
  70. data/bin/rails +14 -0
  71. data/config/initializers/devise.rb +282 -0
  72. data/config/initializers/user.rb +1 -0
  73. data/config/locales/devise.en.yml +64 -0
  74. data/config/routes.rb +13 -0
  75. data/db/migrate/20180312020826_devise_create_dq_admin_users.rb +44 -0
  76. data/db/migrate/20180313060828_create_dq_admin_fields.rb +14 -0
  77. data/db/migrate/20180313125449_rename_config_to_option.rb +5 -0
  78. data/db/migrate/20180314235103_create_dq_admin_settings.rb +9 -0
  79. data/db/migrate/20180318070651_create_dq_admin_products.rb +13 -0
  80. data/db/migrate/20180318070806_create_dq_admin_slides.rb +11 -0
  81. data/db/migrate/20180318071018_create_dq_admin_articles.rb +12 -0
  82. data/db/migrate/20180318071514_add_username_to_users.rb +5 -0
  83. data/dq_admin.gemspec +33 -0
  84. data/lib/dq_admin/engine.rb +5 -0
  85. data/lib/dq_admin/version.rb +3 -0
  86. data/lib/dq_admin.rb +7 -0
  87. data/lib/tasks/dq_admin_tasks.rake +6 -0
  88. data/test/controllers/dq_admin/dashboard_controller_test.rb +11 -0
  89. data/test/controllers/dq_admin/fields_controller_test.rb +11 -0
  90. data/test/controllers/dq_admin/products_controller_test.rb +11 -0
  91. data/test/controllers/dq_admin/users_controller_test.rb +11 -0
  92. data/test/dq_admin_test.rb +7 -0
  93. data/test/dummy/Rakefile +6 -0
  94. data/test/dummy/app/assets/config/manifest.js +5 -0
  95. data/test/dummy/app/assets/images/.keep +0 -0
  96. data/test/dummy/app/assets/javascripts/application.js +15 -0
  97. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  98. data/test/dummy/app/assets/javascripts/channels/.keep +0 -0
  99. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  100. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  101. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  102. data/test/dummy/app/controllers/application_controller.rb +3 -0
  103. data/test/dummy/app/controllers/concerns/.keep +0 -0
  104. data/test/dummy/app/helpers/application_helper.rb +2 -0
  105. data/test/dummy/app/jobs/application_job.rb +2 -0
  106. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  107. data/test/dummy/app/models/application_record.rb +3 -0
  108. data/test/dummy/app/models/concerns/.keep +0 -0
  109. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  110. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  111. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  112. data/test/dummy/bin/bundle +3 -0
  113. data/test/dummy/bin/rails +4 -0
  114. data/test/dummy/bin/rake +4 -0
  115. data/test/dummy/bin/setup +38 -0
  116. data/test/dummy/bin/update +29 -0
  117. data/test/dummy/bin/yarn +11 -0
  118. data/test/dummy/config/application.rb +18 -0
  119. data/test/dummy/config/boot.rb +5 -0
  120. data/test/dummy/config/cable.yml +10 -0
  121. data/test/dummy/config/database.yml +25 -0
  122. data/test/dummy/config/environment.rb +5 -0
  123. data/test/dummy/config/environments/development.rb +54 -0
  124. data/test/dummy/config/environments/production.rb +91 -0
  125. data/test/dummy/config/environments/test.rb +42 -0
  126. data/test/dummy/config/fields.json +20 -0
  127. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  128. data/test/dummy/config/initializers/assets.rb +14 -0
  129. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  130. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  131. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  132. data/test/dummy/config/initializers/inflections.rb +16 -0
  133. data/test/dummy/config/initializers/mime_types.rb +4 -0
  134. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  135. data/test/dummy/config/locales/en.yml +33 -0
  136. data/test/dummy/config/puma.rb +56 -0
  137. data/test/dummy/config/routes.rb +3 -0
  138. data/test/dummy/config/secrets.yml +32 -0
  139. data/test/dummy/config/spring.rb +6 -0
  140. data/test/dummy/config.ru +5 -0
  141. data/test/dummy/db/schema.rb +77 -0
  142. data/test/dummy/lib/assets/.keep +0 -0
  143. data/test/dummy/log/.keep +0 -0
  144. data/test/dummy/package.json +5 -0
  145. data/test/dummy/public/404.html +67 -0
  146. data/test/dummy/public/422.html +67 -0
  147. data/test/dummy/public/500.html +66 -0
  148. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  149. data/test/dummy/public/apple-touch-icon.png +0 -0
  150. data/test/dummy/public/favicon.ico +0 -0
  151. data/test/fixtures/dq_admin/articles.yml +13 -0
  152. data/test/fixtures/dq_admin/fields.yml +17 -0
  153. data/test/fixtures/dq_admin/products.yml +15 -0
  154. data/test/fixtures/dq_admin/settings.yml +7 -0
  155. data/test/fixtures/dq_admin/slides.yml +11 -0
  156. data/test/fixtures/dq_admin/users.yml +11 -0
  157. data/test/integration/navigation_test.rb +8 -0
  158. data/test/models/dq_admin/article_test.rb +9 -0
  159. data/test/models/dq_admin/field_test.rb +9 -0
  160. data/test/models/dq_admin/product_test.rb +9 -0
  161. data/test/models/dq_admin/setting_test.rb +9 -0
  162. data/test/models/dq_admin/slide_test.rb +9 -0
  163. data/test/models/dq_admin/user_test.rb +9 -0
  164. data/test/test_helper.rb +17 -0
  165. metadata +410 -0
@@ -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
+ # 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,33 @@
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
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory. If you use this option
30
+ # you need to make sure to reconnect any threads in the `on_worker_boot`
31
+ # block.
32
+ #
33
+ # preload_app!
34
+
35
+ # If you are preloading your application and using Active Record, it's
36
+ # recommended that you close any connections to the database before workers
37
+ # are forked to prevent connection leakage.
38
+ #
39
+ # before_fork do
40
+ # ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
41
+ # end
42
+
43
+ # The code in the `on_worker_boot` will be called if you are using
44
+ # clustered mode by specifying a number of `workers`. After each worker
45
+ # process is booted, this block will be run. If you are using the `preload_app!`
46
+ # option, you will want to use this block to reconnect to any threads
47
+ # or connections that may have been created at application boot, as Ruby
48
+ # cannot share connections between processes.
49
+ #
50
+ # on_worker_boot do
51
+ # ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
52
+ # end
53
+ #
54
+
55
+ # Allow puma to be restarted by `rails restart` command.
56
+ plugin :tmp_restart
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount DqAdmin::Engine => "/"
3
+ end
@@ -0,0 +1,32 @@
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 `rails 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
+ # Shared secrets are available across all environments.
14
+
15
+ # shared:
16
+ # api_key: a1B2c3D4e5F6
17
+
18
+ # Environmental secrets are only available for that specific environment.
19
+
20
+ development:
21
+ secret_key_base: d0540d80d22d6924d57fabe4d64c1756564e8748d4fde3b617e58cb9ecde5825659755eea4fab090fb5c85fd58267d73366e74208b6e0883c73b5d8113790293
22
+
23
+ test:
24
+ secret_key_base: 57837e1529663127f41597d7fcd093037610f181e3cc1909925c87926269f3000ad07914b5d32b01bca90a13f2b9ea674f7337b5cd8e7ef5b80ce7a71eaa6e1e
25
+
26
+ # Do not keep production secrets in the unencrypted secrets file.
27
+ # Instead, either read values from the environment.
28
+ # Or, use `bin/rails secrets:setup` to configure encrypted secrets
29
+ # and move the `production:` environment over there.
30
+
31
+ production:
32
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w(
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ).each { |path| Spring.watch(path) }
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,77 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 20180318071514) do
14
+
15
+ create_table "dq_admin_articles", force: :cascade do |t|
16
+ t.string "title"
17
+ t.text "content"
18
+ t.string "author"
19
+ t.string "image"
20
+ t.datetime "created_at", null: false
21
+ t.datetime "updated_at", null: false
22
+ end
23
+
24
+ create_table "dq_admin_fields", force: :cascade do |t|
25
+ t.string "key"
26
+ t.text "options"
27
+ t.string "group"
28
+ t.string "lang"
29
+ t.text "data"
30
+ t.string "html_type"
31
+ t.datetime "created_at", null: false
32
+ t.datetime "updated_at", null: false
33
+ end
34
+
35
+ create_table "dq_admin_products", force: :cascade do |t|
36
+ t.string "name"
37
+ t.string "description"
38
+ t.integer "price"
39
+ t.string "buy_link"
40
+ t.string "image"
41
+ t.datetime "created_at", null: false
42
+ t.datetime "updated_at", null: false
43
+ end
44
+
45
+ create_table "dq_admin_settings", force: :cascade do |t|
46
+ t.text "config"
47
+ t.datetime "created_at", null: false
48
+ t.datetime "updated_at", null: false
49
+ end
50
+
51
+ create_table "dq_admin_slides", force: :cascade do |t|
52
+ t.string "image"
53
+ t.string "click_link"
54
+ t.integer "order"
55
+ t.datetime "created_at", null: false
56
+ t.datetime "updated_at", null: false
57
+ end
58
+
59
+ create_table "dq_admin_users", force: :cascade do |t|
60
+ t.string "email", default: "", null: false
61
+ t.string "encrypted_password", default: "", null: false
62
+ t.string "reset_password_token"
63
+ t.datetime "reset_password_sent_at"
64
+ t.datetime "remember_created_at"
65
+ t.integer "sign_in_count", default: 0, null: false
66
+ t.datetime "current_sign_in_at"
67
+ t.datetime "last_sign_in_at"
68
+ t.string "current_sign_in_ip"
69
+ t.string "last_sign_in_ip"
70
+ t.datetime "created_at", null: false
71
+ t.datetime "updated_at", null: false
72
+ t.string "username"
73
+ t.index ["email"], name: "index_dq_admin_users_on_email", unique: true
74
+ t.index ["reset_password_token"], name: "index_dq_admin_users_on_reset_password_token", unique: true
75
+ end
76
+
77
+ end
File without changes
File without changes
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -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
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page 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
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page 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 class="rails-default-error-page">
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
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page 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
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page 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 class="rails-default-error-page">
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
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page 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
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page 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 class="rails-default-error-page">
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
File without changes
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ title: MyString
5
+ content: MyText
6
+ author: MyString
7
+ image: MyString
8
+
9
+ two:
10
+ title: MyString
11
+ content: MyText
12
+ author: MyString
13
+ image: MyString
@@ -0,0 +1,17 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ key: MyString
5
+ config: MyText
6
+ group: MyString
7
+ lang: MyString
8
+ data: MyText
9
+ html_type: MyString
10
+
11
+ two:
12
+ key: MyString
13
+ config: MyText
14
+ group: MyString
15
+ lang: MyString
16
+ data: MyText
17
+ html_type: MyString
@@ -0,0 +1,15 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ description: MyString
6
+ price:
7
+ buy_link: MyString
8
+ image: MyString
9
+
10
+ two:
11
+ name: MyString
12
+ description: MyString
13
+ price:
14
+ buy_link: MyString
15
+ image: MyString
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ config: MyText
5
+
6
+ two:
7
+ config: MyText
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ image: MyString
5
+ click_link: MyString
6
+ order:
7
+
8
+ two:
9
+ image: MyString
10
+ click_link: MyString
11
+ order:
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
8
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class ArticleTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class FieldTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class ProductTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class SettingTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class SlideTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module DqAdmin
4
+ class UserTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,17 @@
1
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
2
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
3
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
4
+ require "rails/test_help"
5
+
6
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
7
+ # to be shown.
8
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
9
+
10
+
11
+ # Load fixtures from the engine
12
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
13
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
14
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
15
+ ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
16
+ ActiveSupport::TestCase.fixtures :all
17
+ end