rails_web_cache 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +2 -0
- data/.gitignore +21 -0
- data/.rspec +3 -0
- data/.rubocop.yml +11 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +178 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +28 -0
- data/app/assets/config/rails_web_cache_manifest.js +2 -0
- data/app/assets/images/rails_web_cache/.keep +0 -0
- data/app/assets/javascripts/rails_web_cache/application.js +17 -0
- data/app/assets/javascripts/rails_web_cache/bootstrap.js +6 -0
- data/app/assets/javascripts/rails_web_cache/jquery.js +2 -0
- data/app/assets/javascripts/rails_web_cache/keys.js +22 -0
- data/app/assets/javascripts/rails_web_cache/popper.js +5 -0
- data/app/assets/stylesheets/rails_web_cache/application.css +14 -0
- data/app/assets/stylesheets/rails_web_cache/bootstrap.css +7 -0
- data/app/controllers/rails_web_cache/application_controller.rb +7 -0
- data/app/controllers/rails_web_cache/keys_controller.rb +84 -0
- data/app/helpers/rails_web_cache/keys_helper.rb +18 -0
- data/app/views/layouts/rails_web_cache/application.html.erb +16 -0
- data/app/views/rails_web_cache/keys/index.html.erb +95 -0
- data/app/views/rails_web_cache/keys/show.html.erb +26 -0
- data/app/views/rails_web_cache/shared/_header.html.erb +17 -0
- data/bin/rails +20 -0
- data/config/routes.rb +11 -0
- data/lib/rails_web_cache/base.rb +44 -0
- data/lib/rails_web_cache/engine.rb +21 -0
- data/lib/rails_web_cache/entry.rb +19 -0
- data/lib/rails_web_cache/file_store.rb +9 -0
- data/lib/rails_web_cache/memory_store.rb +9 -0
- data/lib/rails_web_cache/redis_cache_store.rb +23 -0
- data/lib/rails_web_cache/version.rb +5 -0
- data/lib/rails_web_cache.rb +46 -0
- data/rails_web_cache.gemspec +39 -0
- data/spec/controllers/keys_controller_spec.rb +41 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/application.js +14 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +4 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +5 -0
- data/spec/dummy/bin/rails +6 -0
- data/spec/dummy/bin/rake +6 -0
- data/spec/dummy/bin/setup +38 -0
- data/spec/dummy/bin/update +33 -0
- data/spec/dummy/bin/yarn +13 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +7 -0
- data/spec/dummy/config/environment.rb +7 -0
- data/spec/dummy/config/environments/development.rb +47 -0
- data/spec/dummy/config/environments/production.rb +74 -0
- data/spec/dummy/config/environments/test.rb +40 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +10 -0
- data/spec/dummy/config/initializers/assets.rb +14 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +26 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
- data/spec/dummy/config/initializers/inflections.rb +18 -0
- data/spec/dummy/config/initializers/mime_types.rb +6 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +11 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/puma.rb +39 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config/spring.rb +8 -0
- data/spec/dummy/config.ru +7 -0
- data/spec/dummy/log/development.log +630 -0
- data/spec/dummy/log/test.log +1791 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/helpers/keys_helper_spec.rb +28 -0
- data/spec/rails_helper.rb +50 -0
- data/spec/rails_web_cache_spec.rb +37 -0
- data/spec/routing/keys_controller_spec.rb +31 -0
- data/spec/spec_helper.rb +101 -0
- metadata +237 -0
@@ -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
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
283c214ebcbecf419d2492e919bec2c3bbe610c393708fa0aea613af7945b3de1ae3b942c8ed3aa7a1cf9e56760f44b21dbd6a0466d171a036784b4df5df9c3d
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails_helper'
|
4
|
+
|
5
|
+
RSpec.describe RailsWebCache::KeysHelper, type: :helper do
|
6
|
+
describe 'helper' do
|
7
|
+
it 'returns n/a value' do
|
8
|
+
expect(helper.expired_at(nil)).to eql 'n/a'
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'returns time tag' do
|
12
|
+
date = Date.today
|
13
|
+
content = content_tag(:time,
|
14
|
+
date.strftime('%d %b %Y - %H:%M'),
|
15
|
+
datetime: date.iso8601)
|
16
|
+
expect(helper.expired_at(date)).to eql content
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'returns check_box tag' do
|
20
|
+
value = 'Test'
|
21
|
+
id = 1
|
22
|
+
content = (label_tag "key-#{id}", value, class: 'd-none').concat(
|
23
|
+
check_box_tag('keys[]', value, nil, id: "key-#{id}")
|
24
|
+
)
|
25
|
+
expect(helper.check_box_key(value, id)).to eql content
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
4
|
+
require 'spec_helper'
|
5
|
+
ENV['RAILS_ENV'] ||= 'test'
|
6
|
+
|
7
|
+
require File.expand_path('dummy/config/environment.rb', __dir__)
|
8
|
+
|
9
|
+
# Prevent database truncation if the environment is production
|
10
|
+
abort('The Rails environment is running in production mode!') if Rails.env.production?
|
11
|
+
|
12
|
+
require 'rspec/rails'
|
13
|
+
# Add additional requires below this line. Rails is not loaded until this point!
|
14
|
+
|
15
|
+
# Requires supporting ruby files with custom matchers and macros, etc, in
|
16
|
+
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
|
17
|
+
# run as spec files by default. This means that files in spec/support that end
|
18
|
+
# in _spec.rb will both be required and run as specs, causing the specs to be
|
19
|
+
# run twice. It is recommended that you do not name files matching this glob to
|
20
|
+
# end with _spec.rb. You can configure this pattern with the --pattern
|
21
|
+
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
|
22
|
+
#
|
23
|
+
# The following line is provided for convenience purposes. It has the downside
|
24
|
+
# of increasing the boot-up time by auto-requiring all files in the support
|
25
|
+
# directory. Alternatively, in the individual `*_spec.rb` files, manually
|
26
|
+
# require only the support files necessary.
|
27
|
+
#
|
28
|
+
# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f }
|
29
|
+
|
30
|
+
RSpec.configure do |config|
|
31
|
+
# RSpec Rails can automatically mix in different behaviours to your tests
|
32
|
+
# based on their file location, for example enabling you to call `get` and
|
33
|
+
# `post` in specs under `spec/controllers`.
|
34
|
+
#
|
35
|
+
# You can disable this behaviour by removing the line below, and instead
|
36
|
+
# explicitly tag your specs with their type, e.g.:
|
37
|
+
#
|
38
|
+
# RSpec.describe UsersController, :type => :controller do
|
39
|
+
# # ...
|
40
|
+
# end
|
41
|
+
#
|
42
|
+
# The different available types are documented in the features, such as in
|
43
|
+
# https://relishapp.com/rspec/rspec-rails/docs
|
44
|
+
config.infer_spec_type_from_file_location!
|
45
|
+
|
46
|
+
# Filter lines from Rails gems in backtraces.
|
47
|
+
config.filter_rails_from_backtrace!
|
48
|
+
# arbitrary gems may also be filtered via:
|
49
|
+
# config.filter_gems_from_backtrace("gem name")
|
50
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec.describe RailsWebCache do
|
4
|
+
it 'returns a RailsWebCache::MemoryStore class' do
|
5
|
+
expect(RailsWebCache.cache).to be_a_kind_of(RailsWebCache::MemoryStore)
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'returns a raise errors' do
|
9
|
+
expect { RailsWebCache.send(:driver, 'test') }.to raise_error(ArgumentError)
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'returns 1 key' do
|
13
|
+
Rails.cache.write('RailsWebCache', 'RailsWebCache')
|
14
|
+
expect(RailsWebCache.cache.keys_size).to eql(1)
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'returns 0 key' do
|
18
|
+
RailsWebCache.cache.clear
|
19
|
+
expect(RailsWebCache.cache.keys_size).to eql(0)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'returns RailsWebCache key' do
|
23
|
+
Rails.cache.write('RailsWebCache', 'RailsWebCache')
|
24
|
+
expect(RailsWebCache.cache.read('RailsWebCache')).to eql('RailsWebCache')
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'returns 0 key (delete)' do
|
28
|
+
Rails.cache.write('RailsWebCache', 'RailsWebCache')
|
29
|
+
RailsWebCache.cache.delete('RailsWebCache')
|
30
|
+
expect(RailsWebCache.cache.keys_size).to eql(0)
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'returns RailsWebCache key by search' do
|
34
|
+
Rails.cache.write('RailsWebCache', 'RailsWebCache')
|
35
|
+
expect(RailsWebCache.cache.search('RailsWebCache')).to eql(['RailsWebCache'])
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails_helper'
|
4
|
+
|
5
|
+
RSpec.describe RailsWebCache::KeysController, type: :routing do
|
6
|
+
describe 'routing' do
|
7
|
+
it 'routes to #index' do
|
8
|
+
expect(get: '/rails_web_cache/keys').to(
|
9
|
+
route_to('rails_web_cache/keys#index')
|
10
|
+
)
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'routes to #show' do
|
14
|
+
expect(get: '/rails_web_cache/keys/1').to(
|
15
|
+
route_to('rails_web_cache/keys#show', key: '1')
|
16
|
+
)
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'routes to #destroy' do
|
20
|
+
expect(delete: '/rails_web_cache/keys/1').to(
|
21
|
+
route_to('rails_web_cache/keys#destroy', key: '1')
|
22
|
+
)
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'routes to #destroy_all' do
|
26
|
+
expect(delete: '/rails_web_cache/keys/destroy_all').to(
|
27
|
+
route_to('rails_web_cache/keys#destroy_all')
|
28
|
+
)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
4
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
5
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
6
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
7
|
+
# files.
|
8
|
+
require 'simplecov'
|
9
|
+
require 'coveralls'
|
10
|
+
|
11
|
+
SimpleCov.start
|
12
|
+
Coveralls.wear!
|
13
|
+
|
14
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
15
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
16
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
17
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
18
|
+
# a separate helper file that requires the additional dependencies and performs
|
19
|
+
# the additional setup, and require it from the spec files that actually need
|
20
|
+
# it.
|
21
|
+
#
|
22
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
23
|
+
RSpec.configure do |config|
|
24
|
+
# rspec-expectations config goes here. You can use an alternate
|
25
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
26
|
+
# assertions if you prefer.
|
27
|
+
config.expect_with :rspec do |expectations|
|
28
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
29
|
+
# and `failure_message` of custom matchers include text for helper methods
|
30
|
+
# defined using `chain`, e.g.:
|
31
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
32
|
+
# # => "be bigger than 2 and smaller than 4"
|
33
|
+
# ...rather than:
|
34
|
+
# # => "be bigger than 2"
|
35
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
36
|
+
end
|
37
|
+
|
38
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
39
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
40
|
+
config.mock_with :rspec do |mocks|
|
41
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
42
|
+
# a real object. This is generally recommended, and will default to
|
43
|
+
# `true` in RSpec 4.
|
44
|
+
mocks.verify_partial_doubles = true
|
45
|
+
end
|
46
|
+
|
47
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
48
|
+
# have no way to turn it off -- the option exists only for backwards
|
49
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
50
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
51
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
52
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
53
|
+
|
54
|
+
# The settings below are suggested to provide a good initial experience
|
55
|
+
# with RSpec, but feel free to customize to your heart's content.
|
56
|
+
# # This allows you to limit a spec run to individual examples or groups
|
57
|
+
# # you care about by tagging them with `:focus` metadata. When nothing
|
58
|
+
# # is tagged with `:focus`, all examples get run. RSpec also provides
|
59
|
+
# # aliases for `it`, `describe`, and `context` that include `:focus`
|
60
|
+
# # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
61
|
+
# config.filter_run_when_matching :focus
|
62
|
+
#
|
63
|
+
# # Allows RSpec to persist some state between runs in order to support
|
64
|
+
# # the `--only-failures` and `--next-failure` CLI options. We recommend
|
65
|
+
# # you configure your source control system to ignore this file.
|
66
|
+
# config.example_status_persistence_file_path = "spec/examples.txt"
|
67
|
+
#
|
68
|
+
# # Limits the available syntax to the non-monkey patched syntax that is
|
69
|
+
# # recommended. For more details, see:
|
70
|
+
# # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
71
|
+
# # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
72
|
+
# # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
73
|
+
# config.disable_monkey_patching!
|
74
|
+
#
|
75
|
+
# # Many RSpec users commonly either run the entire suite or an individual
|
76
|
+
# # file, and it's useful to allow more verbose output when running an
|
77
|
+
# # individual spec file.
|
78
|
+
# if config.files_to_run.one?
|
79
|
+
# # Use the documentation formatter for detailed output,
|
80
|
+
# # unless a formatter has already been configured
|
81
|
+
# # (e.g. via a command-line flag).
|
82
|
+
# config.default_formatter = "doc"
|
83
|
+
# end
|
84
|
+
#
|
85
|
+
# # Print the 10 slowest examples and example groups at the
|
86
|
+
# # end of the spec run, to help surface which specs are running
|
87
|
+
# # particularly slow.
|
88
|
+
# config.profile_examples = 10
|
89
|
+
#
|
90
|
+
# # Run specs in random order to surface order dependencies. If you find an
|
91
|
+
# # order dependency and want to debug it, you can fix the order by providing
|
92
|
+
# # the seed, which is printed after each run.
|
93
|
+
# # --seed 1234
|
94
|
+
# config.order = :random
|
95
|
+
#
|
96
|
+
# # Seed global randomization in this process using the `--seed` CLI option.
|
97
|
+
# # Setting this allows you to use `--seed` to deterministically reproduce
|
98
|
+
# # test failures related to randomization by passing the same `--seed` value
|
99
|
+
# # as the one that triggered the failure.
|
100
|
+
# Kernel.srand config.seed
|
101
|
+
end
|