museum 0.3.0 → 0.5.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/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +18 -15
- data/README.md +3 -1
- data/Rakefile +10 -1
- data/VERSION +1 -1
- data/app/controllers/museum/cases_controller.rb +9 -17
- data/app/models/museum/case.rb +6 -3
- data/app/models/museum/case_detail.rb +1 -1
- data/app/models/museum/loupe.rb +1 -1
- data/app/views/application/404.html.haml +2 -0
- data/lib/museum.rb +7 -6
- data/museum.gemspec +70 -39
- data/spec/controllers/cases_controller_spec.rb +12 -14
- data/spec/dummy/.rspec +1 -0
- data/spec/dummy/Rakefile +8 -1
- data/spec/dummy/app/controllers/application_controller.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/bin/rails +1 -1
- data/spec/dummy/bin/setup +34 -0
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/config/application.rb +4 -14
- data/spec/dummy/config/boot.rb +3 -3
- data/spec/dummy/config/cable.yml +9 -0
- data/spec/dummy/config/environment.rb +2 -2
- data/spec/dummy/config/environments/development.rb +31 -6
- data/spec/dummy/config/environments/production.rb +37 -31
- data/spec/dummy/config/environments/test.rb +11 -5
- data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/mime_types.rb +0 -1
- data/spec/dummy/config/initializers/new_framework_defaults.rb +23 -0
- data/spec/dummy/config/initializers/session_store.rb +1 -1
- data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/puma.rb +47 -0
- data/spec/dummy/config/routes.rb +1 -56
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +3 -3
- data/spec/dummy/db/seeds/cases.seeds.rb +24 -0
- data/spec/dummy/db/seeds/loupes.seeds.rb +15 -0
- data/spec/dummy/db/seeds.rb +0 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/features/cases_spec.rb +29 -0
- data/spec/helpers/cases_helper_spec.rb +1 -1
- data/spec/models/case_detail_spec.rb +33 -29
- data/spec/models/case_spec.rb +5 -5
- data/spec/models/loupe_spec.rb +1 -1
- data/spec/museum_spec.rb +1 -1
- data/spec/rails_helper.rb +88 -0
- data/spec/routing/engine_routes_spec.rb +1 -1
- data/spec/spec_helper.rb +79 -59
- data/spec/support/case_support.rb +5 -5
- data/spec/support/controller_behaviors.rb +116 -0
- data/spec/support/loupe_support.rb +2 -2
- metadata +140 -32
- data/coverage/.last_run.json +0 -5
- data/coverage/.resultset.json +0 -548
- data/coverage/.resultset.json.lock +0 -0
- data/db/seeds/museum_cases.yml +0 -15
- data/db/seeds/museum_loupes.yml +0 -13
- data/db/seeds.rb +0 -7
- data/spec/dummy/coverage/.last_run.json +0 -5
- data/spec/dummy/coverage/.resultset.json +0 -114
- data/spec/views/cases/index.html.haml_spec.rb +0 -18
- data/spec/views/cases/show.html.haml_spec.rb +0 -18
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# In the development environment your application's code is reloaded on
|
@@ -9,21 +9,46 @@ MuseumDummy::Application.configure do
|
|
9
9
|
# Do not eager load code on boot.
|
10
10
|
config.eager_load = false
|
11
11
|
|
12
|
-
# Show full error reports
|
13
|
-
config.consider_all_requests_local
|
14
|
-
|
12
|
+
# Show full error reports.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
|
15
|
+
# Enable/disable caching. By default caching is disabled.
|
16
|
+
if Rails.root.join('tmp/caching-dev.txt').exist?
|
17
|
+
config.action_controller.perform_caching = true
|
18
|
+
|
19
|
+
config.cache_store = :memory_store
|
20
|
+
config.public_file_server.headers = {
|
21
|
+
'Cache-Control' => 'public, max-age=172800'
|
22
|
+
}
|
23
|
+
else
|
24
|
+
config.action_controller.perform_caching = false
|
25
|
+
|
26
|
+
config.cache_store = :null_store
|
27
|
+
end
|
15
28
|
|
16
29
|
# Don't care if the mailer can't send.
|
17
|
-
config.action_mailer.raise_delivery_errors = false
|
30
|
+
# config.action_mailer.raise_delivery_errors = false
|
31
|
+
|
32
|
+
# config.action_mailer.perform_caching = false
|
18
33
|
|
19
34
|
# Print deprecation notices to the Rails logger.
|
20
35
|
config.active_support.deprecation = :log
|
21
36
|
|
22
|
-
# Raise an error on page load if there are pending migrations
|
37
|
+
# Raise an error on page load if there are pending migrations.
|
23
38
|
config.active_record.migration_error = :page_load
|
24
39
|
|
25
40
|
# Debug mode disables concatenation and preprocessing of assets.
|
26
41
|
# This option may cause significant delays in view rendering with a large
|
27
42
|
# number of complex assets.
|
28
43
|
config.assets.debug = true
|
44
|
+
|
45
|
+
# Suppress logger output for asset requests.
|
46
|
+
config.assets.quiet = true
|
47
|
+
|
48
|
+
# Raises error for missing translations
|
49
|
+
# config.action_view.raise_on_missing_translations = true
|
50
|
+
|
51
|
+
# Use an evented file watcher to asynchronously detect changes in source code,
|
52
|
+
# routes, locales, etc. This feature depends on the listen gem.
|
53
|
+
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
29
54
|
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
7
|
# Eager load code on boot. This eager loads most of Rails and
|
8
|
-
# your application in memory, allowing both
|
8
|
+
# your application in memory, allowing both threaded web servers
|
9
9
|
# and those relying on copy on write to perform better.
|
10
10
|
# Rake tasks automatically ignore this option for performance.
|
11
11
|
config.eager_load = true
|
@@ -14,13 +14,9 @@ MuseumDummy::Application.configure do
|
|
14
14
|
config.consider_all_requests_local = false
|
15
15
|
config.action_controller.perform_caching = true
|
16
16
|
|
17
|
-
#
|
18
|
-
#
|
19
|
-
|
20
|
-
# config.action_dispatch.rack_cache = true
|
21
|
-
|
22
|
-
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
-
config.serve_static_assets = false
|
17
|
+
# Disable serving static files from the `/public` folder by default since
|
18
|
+
# Apache or NGINX already handles this.
|
19
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
24
20
|
|
25
21
|
# Compress JavaScripts and CSS.
|
26
22
|
config.assets.js_compressor = :uglifier
|
@@ -29,52 +25,62 @@ MuseumDummy::Application.configure do
|
|
29
25
|
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
26
|
config.assets.compile = false
|
31
27
|
|
32
|
-
#
|
33
|
-
config.assets.digest = true
|
28
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
34
29
|
|
35
|
-
#
|
36
|
-
config.
|
30
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
31
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
37
32
|
|
38
33
|
# Specifies the header that your server uses for sending files.
|
39
|
-
# config.action_dispatch.x_sendfile_header =
|
40
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for
|
34
|
+
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
35
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
36
|
+
|
37
|
+
# Mount Action Cable outside main process or domain
|
38
|
+
# config.action_cable.mount_path = nil
|
39
|
+
# config.action_cable.url = 'wss://example.com/cable'
|
40
|
+
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
41
41
|
|
42
42
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
43
|
# config.force_ssl = true
|
44
44
|
|
45
|
-
#
|
46
|
-
|
45
|
+
# Use the lowest log level to ensure availability of diagnostic information
|
46
|
+
# when problems arise.
|
47
|
+
config.log_level = :debug
|
47
48
|
|
48
49
|
# Prepend all log lines with the following tags.
|
49
|
-
|
50
|
-
|
51
|
-
# Use a different logger for distributed setups.
|
52
|
-
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
50
|
+
config.log_tags = [ :request_id ]
|
53
51
|
|
54
52
|
# Use a different cache store in production.
|
55
53
|
# config.cache_store = :mem_cache_store
|
56
54
|
|
57
|
-
#
|
58
|
-
# config.
|
59
|
-
|
60
|
-
|
61
|
-
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
-
# config.assets.precompile += %w( search.js )
|
55
|
+
# Use a real queuing backend for Active Job (and separate queues per environment)
|
56
|
+
# config.active_job.queue_adapter = :resque
|
57
|
+
# config.active_job.queue_name_prefix = "museum_dummy_#{Rails.env}"
|
58
|
+
config.action_mailer.perform_caching = false
|
63
59
|
|
64
60
|
# Ignore bad email addresses and do not raise email delivery errors.
|
65
61
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
62
|
# config.action_mailer.raise_delivery_errors = false
|
67
63
|
|
68
64
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
-
# the I18n.default_locale when a translation
|
65
|
+
# the I18n.default_locale when a translation cannot be found).
|
70
66
|
config.i18n.fallbacks = true
|
71
67
|
|
72
68
|
# Send deprecation notices to registered listeners.
|
73
69
|
config.active_support.deprecation = :notify
|
74
70
|
|
75
|
-
# Disable automatic flushing of the log to improve performance.
|
76
|
-
# config.autoflush_log = false
|
77
|
-
|
78
71
|
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
72
|
config.log_formatter = ::Logger::Formatter.new
|
73
|
+
|
74
|
+
# Use a different logger for distributed setups.
|
75
|
+
# require 'syslog/logger'
|
76
|
+
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
77
|
+
|
78
|
+
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
79
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
80
|
+
logger.formatter = config.log_formatter
|
81
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
82
|
+
end
|
83
|
+
|
84
|
+
# Do not dump schema after migrations.
|
85
|
+
config.active_record.dump_schema_after_migration = false
|
80
86
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
@@ -12,9 +12,11 @@ MuseumDummy::Application.configure do
|
|
12
12
|
# preloads Rails for running tests, you may have to set it to true.
|
13
13
|
config.eager_load = false
|
14
14
|
|
15
|
-
# Configure
|
16
|
-
config.
|
17
|
-
config.
|
15
|
+
# Configure public file server for tests with Cache-Control for performance.
|
16
|
+
config.public_file_server.enabled = true
|
17
|
+
config.public_file_server.headers = {
|
18
|
+
'Cache-Control' => 'public, max-age=3600'
|
19
|
+
}
|
18
20
|
|
19
21
|
# Show full error reports and disable caching.
|
20
22
|
config.consider_all_requests_local = true
|
@@ -25,12 +27,16 @@ MuseumDummy::Application.configure do
|
|
25
27
|
|
26
28
|
# Disable request forgery protection in test environment.
|
27
29
|
config.action_controller.allow_forgery_protection = false
|
30
|
+
# config.action_mailer.perform_caching = false
|
28
31
|
|
29
32
|
# Tell Action Mailer not to deliver emails to the real world.
|
30
33
|
# The :test delivery method accumulates sent emails in the
|
31
34
|
# ActionMailer::Base.deliveries array.
|
32
|
-
config.action_mailer.delivery_method = :test
|
35
|
+
# config.action_mailer.delivery_method = :test
|
33
36
|
|
34
37
|
# Print deprecation notices to the stderr.
|
35
38
|
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
36
42
|
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains migration options to ease your Rails 5.0 upgrade.
|
4
|
+
#
|
5
|
+
# Once upgraded flip defaults one by one to migrate to the new default.
|
6
|
+
#
|
7
|
+
# Read the Rails 5.0 release notes for more info on each option.
|
8
|
+
|
9
|
+
# Enable per-form CSRF tokens. Previous versions had false.
|
10
|
+
Rails.application.config.action_controller.per_form_csrf_tokens = false
|
11
|
+
|
12
|
+
# Enable origin-checking CSRF mitigation. Previous versions had false.
|
13
|
+
Rails.application.config.action_controller.forgery_protection_origin_check = false
|
14
|
+
|
15
|
+
# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
|
16
|
+
# Previous versions had false.
|
17
|
+
ActiveSupport.to_time_preserves_timezone = false
|
18
|
+
|
19
|
+
# Require `belongs_to` associations by default. Previous versions had false.
|
20
|
+
Rails.application.config.active_record.belongs_to_required_by_default = false
|
21
|
+
|
22
|
+
# Do not halt callback chains when a callback returns false. Previous versions had true.
|
23
|
+
ActiveSupport.halt_callback_chains_on_return_false = true
|
@@ -5,10 +5,10 @@
|
|
5
5
|
|
6
6
|
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
7
|
ActiveSupport.on_load(:action_controller) do
|
8
|
-
wrap_parameters format: [:json]
|
8
|
+
wrap_parameters format: [:json]
|
9
9
|
end
|
10
10
|
|
11
11
|
# To enable root element in JSON for ActiveRecord objects.
|
12
12
|
# ActiveSupport.on_load(:active_record) do
|
13
|
-
#
|
13
|
+
# self.include_root_in_json = true
|
14
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,47 @@
|
|
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 }.to_i
|
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
|
+
# The code in the `on_worker_boot` will be called if you are using
|
36
|
+
# clustered mode by specifying a number of `workers`. After each worker
|
37
|
+
# process is booted this block will be run, if you are using `preload_app!`
|
38
|
+
# option you will want to use this block to reconnect to any threads
|
39
|
+
# or connections that may have been created at application boot, Ruby
|
40
|
+
# cannot share connections between processes.
|
41
|
+
#
|
42
|
+
# on_worker_boot do
|
43
|
+
# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
44
|
+
# end
|
45
|
+
|
46
|
+
# Allow puma to be restarted by `rails restart` command.
|
47
|
+
plugin :tmp_restart
|
data/spec/dummy/config/routes.rb
CHANGED
@@ -1,58 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
Rails.application.routes.draw do
|
3
2
|
mount Museum::Engine => '/museum', :as => 'museum'
|
4
|
-
# The priority is based upon order of creation: first created -> highest priority.
|
5
|
-
# See how all your routes lay out with "rake routes".
|
6
|
-
|
7
|
-
# You can have the root of your site routed with "root"
|
8
|
-
# root 'welcome#index'
|
9
|
-
|
10
|
-
# Example of regular route:
|
11
|
-
# get 'products/:id' => 'catalog#view'
|
12
|
-
|
13
|
-
# Example of named route that can be invoked with purchase_url(id: product.id)
|
14
|
-
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
15
|
-
|
16
|
-
# Example resource route (maps HTTP verbs to controller actions automatically):
|
17
|
-
# resources :products
|
18
|
-
|
19
|
-
# Example resource route with options:
|
20
|
-
# resources :products do
|
21
|
-
# member do
|
22
|
-
# get 'short'
|
23
|
-
# post 'toggle'
|
24
|
-
# end
|
25
|
-
#
|
26
|
-
# collection do
|
27
|
-
# get 'sold'
|
28
|
-
# end
|
29
|
-
# end
|
30
|
-
|
31
|
-
# Example resource route with sub-resources:
|
32
|
-
# resources :products do
|
33
|
-
# resources :comments, :sales
|
34
|
-
# resource :seller
|
35
|
-
# end
|
36
|
-
|
37
|
-
# Example resource route with more complex sub-resources:
|
38
|
-
# resources :products do
|
39
|
-
# resources :comments
|
40
|
-
# resources :sales do
|
41
|
-
# get 'recent', on: :collection
|
42
|
-
# end
|
43
|
-
# end
|
44
|
-
|
45
|
-
# Example resource route with concerns:
|
46
|
-
# concern :toggleable do
|
47
|
-
# post 'toggle'
|
48
|
-
# end
|
49
|
-
# resources :posts, concerns: :toggleable
|
50
|
-
# resources :photos, concerns: :toggleable
|
51
|
-
|
52
|
-
# Example resource route within a namespace:
|
53
|
-
# namespace :admin do
|
54
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
55
|
-
# # (app/controllers/admin/products_controller.rb)
|
56
|
-
# resources :products
|
57
|
-
# end
|
58
3
|
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 `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
|
+
development:
|
14
|
+
secret_key_base: 33802cd19f108258ad88ae2613667b6998998cff71cb75044435b1e7d1ea24ad1e20799e78dace355f2240a7d45b2a2358289987f904c573e2e2480f250fdc6a
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 92f45a95c75f7223d41b019057fbe422cb5a49ec2825524842890fb96e31efbcd2d8049fca1698b9bfbf5b706742e27c087282c776e388b9edda8a4228e1d42d
|
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"] %>
|
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
|
14
14
|
ActiveRecord::Schema.define(version: 20140519231105) do
|
15
15
|
|
16
|
-
create_table "museum_case_details", force:
|
16
|
+
create_table "museum_case_details", force: :cascade do |t|
|
17
17
|
t.integer "museum_case_id"
|
18
18
|
t.integer "museum_loupe_id"
|
19
19
|
t.string "key"
|
@@ -24,7 +24,7 @@ ActiveRecord::Schema.define(version: 20140519231105) do
|
|
24
24
|
|
25
25
|
add_index "museum_case_details", ["museum_loupe_id", "museum_case_id", "key"], name: "key", unique: true
|
26
26
|
|
27
|
-
create_table "museum_cases", force:
|
27
|
+
create_table "museum_cases", force: :cascade do |t|
|
28
28
|
t.string "name"
|
29
29
|
t.string "title"
|
30
30
|
t.text "sort"
|
@@ -34,7 +34,7 @@ ActiveRecord::Schema.define(version: 20140519231105) do
|
|
34
34
|
|
35
35
|
add_index "museum_cases", ["name"], name: "index_museum_cases_on_name", unique: true
|
36
36
|
|
37
|
-
create_table "museum_loupes", force:
|
37
|
+
create_table "museum_loupes", force: :cascade do |t|
|
38
38
|
t.string "title"
|
39
39
|
t.string "slug"
|
40
40
|
t.string "uri_template"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
after :loupes do
|
2
|
+
FactoryGirl.create(:case,
|
3
|
+
name: 'bootswitch',
|
4
|
+
title: 'Bootswitch'
|
5
|
+
)
|
6
|
+
FactoryGirl.create(:case,
|
7
|
+
name: 'customizable_bootstrap',
|
8
|
+
title: 'Customizable Bootstrap'
|
9
|
+
)
|
10
|
+
FactoryGirl.create(:case,
|
11
|
+
name: 'bootstrap_leather',
|
12
|
+
title: 'Bootstrap Leather'
|
13
|
+
)
|
14
|
+
FactoryGirl.create(:case,
|
15
|
+
name: 'bootstrap_pager',
|
16
|
+
title: 'Bootstrap Pager'
|
17
|
+
).freshen
|
18
|
+
expired = FactoryGirl.create(:case,
|
19
|
+
name: 'private_person',
|
20
|
+
title: 'Private Person'
|
21
|
+
)
|
22
|
+
yesterday = 1.day.ago.to_datetime.to_s
|
23
|
+
Museum::Case.where(id: expired.id).update_all("updated_at='#{yesterday}', created_at='#{yesterday}'")
|
24
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
FactoryGirl.create(:loupe,
|
2
|
+
title: 'RubyGems',
|
3
|
+
uri_template: 'https://www.rubygems.org/api/v1/gems/%{name}.json',
|
4
|
+
data_format: 'json'
|
5
|
+
)
|
6
|
+
FactoryGirl.create(:loupe,
|
7
|
+
title: 'GitHub',
|
8
|
+
uri_template: 'https://api.github.com/repos/%{user}/%{name}',
|
9
|
+
data_format: 'json'
|
10
|
+
)
|
11
|
+
FactoryGirl.create(:loupe,
|
12
|
+
title: 'GitHub README',
|
13
|
+
uri_template: 'https://api.github.com/repos/%{user}/%{name}/readme',
|
14
|
+
data_format: 'json'
|
15
|
+
)
|
data/spec/dummy/db/seeds.rb
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
Museum::Engine.load_seed
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
RSpec.feature 'Boxes' do
|
3
|
+
include_context 'case support'
|
4
|
+
include_context 'loupe support'
|
5
|
+
|
6
|
+
describe 'Index' do
|
7
|
+
before do
|
8
|
+
visit '/museum/cases'
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "displays a list of cases" do
|
12
|
+
subject { page }
|
13
|
+
it { should have_css("h2", minimum: 4) }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe 'Show' do
|
18
|
+
before do
|
19
|
+
visit '/museum/cases/bootswitch'
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "displays a cases" do
|
23
|
+
subject { page }
|
24
|
+
it { should have_css("h1", text: 'Bootswitch') }
|
25
|
+
it { should have_css("h3", text: 'RubyGems') }
|
26
|
+
it { should have_css("h3", text: 'GitHub') }
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -1,37 +1,41 @@
|
|
1
|
-
require '
|
1
|
+
require 'rails_helper'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
module Museum
|
4
|
+
RSpec.describe CaseDetail do
|
5
|
+
include_context 'loupe support'
|
6
|
+
include_context 'case support'
|
6
7
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
describe 'Model' do
|
9
|
+
it { should validate_presence_of(:key) }
|
10
|
+
it { should validate_presence_of(:case) }
|
11
|
+
it { should validate_presence_of(:loupe) }
|
12
|
+
it { should belong_to(:case) }
|
13
|
+
it { should belong_to(:loupe) }
|
14
|
+
end
|
12
15
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
16
|
+
describe '#update_or_create_by' do
|
17
|
+
subject {
|
18
|
+
args = { loupe: rubygems, case: dummy_package, key: 'name'}
|
19
|
+
attributes = { value: 'test' }
|
20
|
+
Museum::CaseDetail.update_or_create_by(args, attributes)
|
21
|
+
Museum::CaseDetail.find_by(args)
|
22
|
+
}
|
23
|
+
its([:value]) { should == 'test' }
|
24
|
+
end
|
22
25
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
26
|
+
describe '#find_all_by_loupe_slug' do
|
27
|
+
subject { Museum::CaseDetail.find_all_by_loupe_slug('rubygems').count }
|
28
|
+
it { should be >= 2 }
|
29
|
+
end
|
27
30
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
31
|
+
describe '#detail' do
|
32
|
+
subject { fresh_package.loupe('rubygems').detail('name') }
|
33
|
+
it { should == "bootstrap_pager" }
|
34
|
+
end
|
32
35
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
+
describe '#follow' do
|
37
|
+
subject { fresh_package.loupe('rubygems').follow('homepage_uri') }
|
38
|
+
it { should be_a String }
|
39
|
+
end
|
36
40
|
end
|
37
41
|
end
|