exes_poster 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 (61) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +100 -0
  4. data/Rakefile +58 -0
  5. data/lib/exes_poster.rb +17 -0
  6. data/lib/exes_poster/configurator.rb +28 -0
  7. data/lib/exes_poster/poster.rb +39 -0
  8. data/lib/exes_poster/version.rb +3 -0
  9. data/lib/tasks/exes_poster_tasks.rake +4 -0
  10. data/spec/dummy/Rakefile +6 -0
  11. data/spec/dummy/app/assets/config/manifest.js +2 -0
  12. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  13. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  15. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  16. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  17. data/spec/dummy/app/jobs/application_job.rb +2 -0
  18. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  19. data/spec/dummy/app/models/application_record.rb +3 -0
  20. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  21. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/bin/setup +34 -0
  26. data/spec/dummy/bin/update +29 -0
  27. data/spec/dummy/config.ru +5 -0
  28. data/spec/dummy/config/application.rb +28 -0
  29. data/spec/dummy/config/application.yml +12 -0
  30. data/spec/dummy/config/boot.rb +5 -0
  31. data/spec/dummy/config/cable.yml +9 -0
  32. data/spec/dummy/config/database.yml +25 -0
  33. data/spec/dummy/config/environment.rb +5 -0
  34. data/spec/dummy/config/environments/development.rb +47 -0
  35. data/spec/dummy/config/environments/production.rb +78 -0
  36. data/spec/dummy/config/environments/test.rb +42 -0
  37. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  38. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/spec/dummy/config/initializers/cors.rb +16 -0
  40. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/spec/dummy/config/initializers/inflections.rb +16 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  43. data/spec/dummy/config/initializers/new_framework_defaults.rb +18 -0
  44. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/spec/dummy/config/locales/en.yml +23 -0
  46. data/spec/dummy/config/puma.rb +47 -0
  47. data/spec/dummy/config/routes.rb +3 -0
  48. data/spec/dummy/config/secrets.yml +22 -0
  49. data/spec/dummy/config/spring.rb +6 -0
  50. data/spec/dummy/db/development.sqlite3 +0 -0
  51. data/spec/dummy/db/schema.rb +15 -0
  52. data/spec/dummy/db/test.sqlite3 +0 -0
  53. data/spec/dummy/log/development.log +7 -0
  54. data/spec/dummy/log/test.log +4831 -0
  55. data/spec/lib/exes_poster/configurator_spec.rb +47 -0
  56. data/spec/lib/exes_poster/poster_spec.rb +80 -0
  57. data/spec/lib/exes_poster/version_spec.rb +11 -0
  58. data/spec/rails_helper.rb +62 -0
  59. data/spec/spec_helper.rb +99 -0
  60. data/spec/support/hooks.rb +5 -0
  61. metadata +174 -0
@@ -0,0 +1,47 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe ExesPoster::Configurator do
4
+ context 'included_module' do
5
+ let(:included_module) do
6
+ Module.new {
7
+ module_eval <<-EOS
8
+ @@hoge = 'hoge'
9
+ @@fuga = nil
10
+ EOS
11
+ include ExesPoster::Configurator
12
+ }
13
+ end
14
+
15
+ subject { included_module }
16
+
17
+ it 'should be defined getter methods for module variables' do
18
+ is_expected.to respond_to :hoge
19
+ is_expected.to respond_to :fuga
20
+ end
21
+
22
+ it 'should be defined setter methods for module variables' do
23
+ is_expected.to respond_to :hoge=
24
+ is_expected.to respond_to :fuga=
25
+ end
26
+
27
+ it 'should set to default value' do
28
+ expect(subject.hoge).to eq 'hoge'
29
+ expect(subject.fuga).to be_nil
30
+ end
31
+
32
+ it { is_expected.to respond_to :setup }
33
+
34
+ context '.setup' do
35
+ before {
36
+ included_module.setup do |config|
37
+ config.hoge = nil
38
+ config.fuga = 'fuga'
39
+ end
40
+ }
41
+ it 'Module variables should be overwritten' do
42
+ expect(subject.hoge).to be_nil
43
+ expect(subject.fuga).to eq 'fuga'
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,80 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe ExesPoster::Poster do
4
+ context 'included_module' do
5
+ let(:included_module) do
6
+ Module.new {
7
+ def self.es_url ; end
8
+ def self.es_index ; end
9
+ include ExesPoster::Poster
10
+ }
11
+ end
12
+
13
+ subject { included_module }
14
+
15
+ it { is_expected.to respond_to :post_exception }
16
+ it { is_expected.to respond_to :post }
17
+
18
+ context '.post_exception' do
19
+ let(:client) { double(Elasticsearch::Client, index: { '_id' => document_id }) }
20
+ let(:message) { double(String) }
21
+ let(:backtrace) { double(Array) }
22
+ let(:exception_class) { double(String) }
23
+ let(:exception) { double(RuntimeError, message: message, backtrace: backtrace, class: double(Class, name: exception_class)) }
24
+ let(:document_id) { double(String) }
25
+ let(:es_url) { double(String) }
26
+ let(:es_index) { double(String) }
27
+ before do
28
+ Timecop.freeze(Time.parse('2016-09-22T10:23:40.829+09:00'))
29
+ allow(Elasticsearch::Client).to receive(:new).and_return(client)
30
+ allow(included_module).to receive(:es_url).and_return(es_url)
31
+ allow(included_module).to receive(:es_index).and_return(es_index)
32
+ end
33
+ subject { included_module.post_exception(exception) }
34
+ it { is_expected.to eq document_id }
35
+
36
+ context 'then' do
37
+ context 'Elasticsearch::Client' do
38
+ after { included_module.post_exception(exception) }
39
+ subject { Elasticsearch::Client }
40
+ it { is_expected.to receive(:new).with(url: es_url) }
41
+ context 'instance' do
42
+ subject { client }
43
+ it { is_expected.to receive(:index).with(index: es_index, type: :exception, body: { message: message, '@timestamp' => '2016-09-22T10:23:40.829+09:00', detail: { class: exception_class, backtrace: backtrace}}, refresh: true) }
44
+ end
45
+ end
46
+ end
47
+ end
48
+
49
+
50
+ context '.post' do
51
+ let(:client) { double(Elasticsearch::Client, index: { '_id' => document_id }) }
52
+ let(:message) { double(String) }
53
+ let(:document_id) { double(String) }
54
+ let(:es_url) { double(String) }
55
+ let(:es_index) { double(String) }
56
+ let(:type) { double(String) }
57
+ before do
58
+ Timecop.freeze(Time.parse('2016-09-22T10:23:40.829+09:00'))
59
+ allow(Elasticsearch::Client).to receive(:new).and_return(client)
60
+ allow(included_module).to receive(:es_url).and_return(es_url)
61
+ allow(included_module).to receive(:es_index).and_return(es_index)
62
+ end
63
+ subject { included_module.post(type, message) }
64
+ it { is_expected.to eq document_id }
65
+
66
+ context 'then' do
67
+ context 'Elasticsearch::Client' do
68
+ after { included_module.post(type, message) }
69
+ subject { Elasticsearch::Client }
70
+ it { is_expected.to receive(:new).with(url: es_url) }
71
+ context 'instance' do
72
+ subject { client }
73
+ it { is_expected.to receive(:index).with(index: es_index, type: type, body: { message: message, '@timestamp' => '2016-09-22T10:23:40.829+09:00'}, refresh: true) }
74
+ end
75
+ end
76
+ end
77
+
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,11 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe ExesPoster do
4
+ it { is_expected.to be_const_defined(:VERSION) }
5
+ context 'VERSION' do
6
+ subject { ExesPoster.const_get(:VERSION) }
7
+ it { is_expected.to_not be_nil }
8
+ it { is_expected.to be_frozen }
9
+ end
10
+
11
+ end
@@ -0,0 +1,62 @@
1
+ require 'simplecov'
2
+ require 'simplecov-rcov'
3
+ SimpleCov.start 'rails'
4
+ SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
5
+
6
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
7
+ ENV['RAILS_ENV'] ||= 'test'
8
+ require File.expand_path('../dummy/config/environment', __FILE__)
9
+ # Prevent database truncation if the environment is production
10
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
11
+ require 'spec_helper'
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("#{File.dirname(__FILE__)}/support/**/*.rb")].each { |f| require f }
29
+
30
+ # Checks for pending migration and applies them before tests are run.
31
+ # If you are not using ActiveRecord, you can remove this line.
32
+ ActiveRecord::Migration.maintain_test_schema!
33
+
34
+ RSpec.configure do |config|
35
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
36
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
37
+
38
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
39
+ # examples within a transaction, remove the following line or assign false
40
+ # instead of true.
41
+ config.use_transactional_fixtures = true
42
+
43
+ # RSpec Rails can automatically mix in different behaviours to your tests
44
+ # based on their file location, for example enabling you to call `get` and
45
+ # `post` in specs under `spec/controllers`.
46
+ #
47
+ # You can disable this behaviour by removing the line below, and instead
48
+ # explicitly tag your specs with their type, e.g.:
49
+ #
50
+ # RSpec.describe UsersController, :type => :controller do
51
+ # # ...
52
+ # end
53
+ #
54
+ # The different available types are documented in the features, such as in
55
+ # https://relishapp.com/rspec/rspec-rails/docs
56
+ config.infer_spec_type_from_file_location!
57
+
58
+ # Filter lines from Rails gems in backtraces.
59
+ config.filter_rails_from_backtrace!
60
+ # arbitrary gems may also be filtered via:
61
+ # config.filter_gems_from_backtrace("gem name")
62
+ end
@@ -0,0 +1,99 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
44
+ # have no way to turn it off -- the option exists only for backwards
45
+ # compatibility in RSpec 3). It causes shared context metadata to be
46
+ # inherited by the metadata hash of host groups and examples, rather than
47
+ # triggering implicit auto-inclusion in groups with matching metadata.
48
+ config.shared_context_metadata_behavior = :apply_to_host_groups
49
+
50
+ # The settings below are suggested to provide a good initial experience
51
+ # with RSpec, but feel free to customize to your heart's content.
52
+ =begin
53
+ # This allows you to limit a spec run to individual examples or groups
54
+ # you care about by tagging them with `:focus` metadata. When nothing
55
+ # is tagged with `:focus`, all examples get run. RSpec also provides
56
+ # aliases for `it`, `describe`, and `context` that include `:focus`
57
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
58
+ config.filter_run_when_matching :focus
59
+
60
+ # Allows RSpec to persist some state between runs in order to support
61
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
62
+ # you configure your source control system to ignore this file.
63
+ config.example_status_persistence_file_path = "spec/examples.txt"
64
+
65
+ # Limits the available syntax to the non-monkey patched syntax that is
66
+ # recommended. For more details, see:
67
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
68
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
69
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
70
+ config.disable_monkey_patching!
71
+
72
+ # Many RSpec users commonly either run the entire suite or an individual
73
+ # file, and it's useful to allow more verbose output when running an
74
+ # individual spec file.
75
+ if config.files_to_run.one?
76
+ # Use the documentation formatter for detailed output,
77
+ # unless a formatter has already been configured
78
+ # (e.g. via a command-line flag).
79
+ config.default_formatter = 'doc'
80
+ end
81
+
82
+ # Print the 10 slowest examples and example groups at the
83
+ # end of the spec run, to help surface which specs are running
84
+ # particularly slow.
85
+ config.profile_examples = 10
86
+
87
+ # Run specs in random order to surface order dependencies. If you find an
88
+ # order dependency and want to debug it, you can fix the order by providing
89
+ # the seed, which is printed after each run.
90
+ # --seed 1234
91
+ config.order = :random
92
+
93
+ # Seed global randomization in this process using the `--seed` CLI option.
94
+ # Setting this allows you to use `--seed` to deterministically reproduce
95
+ # test failures related to randomization by passing the same `--seed` value
96
+ # as the one that triggered the failure.
97
+ Kernel.srand config.seed
98
+ =end
99
+ end
@@ -0,0 +1,5 @@
1
+ RSpec.configure do |config|
2
+ config.after(:example) do
3
+ Timecop.return
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: exes_poster
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Takahiro HAMAGUCHI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-09-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: elasticsearch
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.0.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '2.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 2.0.0
33
+ description: Exception post to Elasticsearch.
34
+ email:
35
+ - tk.hamaguchi@gmail.com
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - MIT-LICENSE
41
+ - README.md
42
+ - Rakefile
43
+ - lib/exes_poster.rb
44
+ - lib/exes_poster/configurator.rb
45
+ - lib/exes_poster/poster.rb
46
+ - lib/exes_poster/version.rb
47
+ - lib/tasks/exes_poster_tasks.rake
48
+ - spec/dummy/Rakefile
49
+ - spec/dummy/app/assets/config/manifest.js
50
+ - spec/dummy/app/assets/javascripts/application.js
51
+ - spec/dummy/app/assets/stylesheets/application.css
52
+ - spec/dummy/app/channels/application_cable/channel.rb
53
+ - spec/dummy/app/channels/application_cable/connection.rb
54
+ - spec/dummy/app/controllers/application_controller.rb
55
+ - spec/dummy/app/jobs/application_job.rb
56
+ - spec/dummy/app/mailers/application_mailer.rb
57
+ - spec/dummy/app/models/application_record.rb
58
+ - spec/dummy/app/views/layouts/mailer.html.erb
59
+ - spec/dummy/app/views/layouts/mailer.text.erb
60
+ - spec/dummy/bin/bundle
61
+ - spec/dummy/bin/rails
62
+ - spec/dummy/bin/rake
63
+ - spec/dummy/bin/setup
64
+ - spec/dummy/bin/update
65
+ - spec/dummy/config.ru
66
+ - spec/dummy/config/application.rb
67
+ - spec/dummy/config/application.yml
68
+ - spec/dummy/config/boot.rb
69
+ - spec/dummy/config/cable.yml
70
+ - spec/dummy/config/database.yml
71
+ - spec/dummy/config/environment.rb
72
+ - spec/dummy/config/environments/development.rb
73
+ - spec/dummy/config/environments/production.rb
74
+ - spec/dummy/config/environments/test.rb
75
+ - spec/dummy/config/initializers/application_controller_renderer.rb
76
+ - spec/dummy/config/initializers/backtrace_silencers.rb
77
+ - spec/dummy/config/initializers/cors.rb
78
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
79
+ - spec/dummy/config/initializers/inflections.rb
80
+ - spec/dummy/config/initializers/mime_types.rb
81
+ - spec/dummy/config/initializers/new_framework_defaults.rb
82
+ - spec/dummy/config/initializers/wrap_parameters.rb
83
+ - spec/dummy/config/locales/en.yml
84
+ - spec/dummy/config/puma.rb
85
+ - spec/dummy/config/routes.rb
86
+ - spec/dummy/config/secrets.yml
87
+ - spec/dummy/config/spring.rb
88
+ - spec/dummy/db/development.sqlite3
89
+ - spec/dummy/db/schema.rb
90
+ - spec/dummy/db/test.sqlite3
91
+ - spec/dummy/log/development.log
92
+ - spec/dummy/log/test.log
93
+ - spec/lib/exes_poster/configurator_spec.rb
94
+ - spec/lib/exes_poster/poster_spec.rb
95
+ - spec/lib/exes_poster/version_spec.rb
96
+ - spec/rails_helper.rb
97
+ - spec/spec_helper.rb
98
+ - spec/support/hooks.rb
99
+ homepage: https://github.com/tk-hamaguchi/exes_poster
100
+ licenses:
101
+ - MIT
102
+ metadata: {}
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ required_ruby_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ requirements: []
118
+ rubyforge_project:
119
+ rubygems_version: 2.5.1
120
+ signing_key:
121
+ specification_version: 4
122
+ summary: Exception post to Elasticsearch
123
+ test_files:
124
+ - spec/dummy/app/assets/config/manifest.js
125
+ - spec/dummy/app/assets/javascripts/application.js
126
+ - spec/dummy/app/assets/stylesheets/application.css
127
+ - spec/dummy/app/channels/application_cable/channel.rb
128
+ - spec/dummy/app/channels/application_cable/connection.rb
129
+ - spec/dummy/app/controllers/application_controller.rb
130
+ - spec/dummy/app/jobs/application_job.rb
131
+ - spec/dummy/app/mailers/application_mailer.rb
132
+ - spec/dummy/app/models/application_record.rb
133
+ - spec/dummy/app/views/layouts/mailer.html.erb
134
+ - spec/dummy/app/views/layouts/mailer.text.erb
135
+ - spec/dummy/bin/bundle
136
+ - spec/dummy/bin/rails
137
+ - spec/dummy/bin/rake
138
+ - spec/dummy/bin/setup
139
+ - spec/dummy/bin/update
140
+ - spec/dummy/config/application.rb
141
+ - spec/dummy/config/application.yml
142
+ - spec/dummy/config/boot.rb
143
+ - spec/dummy/config/cable.yml
144
+ - spec/dummy/config/database.yml
145
+ - spec/dummy/config/environment.rb
146
+ - spec/dummy/config/environments/development.rb
147
+ - spec/dummy/config/environments/production.rb
148
+ - spec/dummy/config/environments/test.rb
149
+ - spec/dummy/config/initializers/application_controller_renderer.rb
150
+ - spec/dummy/config/initializers/backtrace_silencers.rb
151
+ - spec/dummy/config/initializers/cors.rb
152
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
153
+ - spec/dummy/config/initializers/inflections.rb
154
+ - spec/dummy/config/initializers/mime_types.rb
155
+ - spec/dummy/config/initializers/new_framework_defaults.rb
156
+ - spec/dummy/config/initializers/wrap_parameters.rb
157
+ - spec/dummy/config/locales/en.yml
158
+ - spec/dummy/config/puma.rb
159
+ - spec/dummy/config/routes.rb
160
+ - spec/dummy/config/secrets.yml
161
+ - spec/dummy/config/spring.rb
162
+ - spec/dummy/config.ru
163
+ - spec/dummy/db/development.sqlite3
164
+ - spec/dummy/db/schema.rb
165
+ - spec/dummy/db/test.sqlite3
166
+ - spec/dummy/log/development.log
167
+ - spec/dummy/log/test.log
168
+ - spec/dummy/Rakefile
169
+ - spec/lib/exes_poster/configurator_spec.rb
170
+ - spec/lib/exes_poster/poster_spec.rb
171
+ - spec/lib/exes_poster/version_spec.rb
172
+ - spec/rails_helper.rb
173
+ - spec/spec_helper.rb
174
+ - spec/support/hooks.rb