rack-ecg 0.0.1 → 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.
@@ -1,23 +0,0 @@
1
- require 'rspec'
2
- require 'rack/test'
3
- require 'rack/ecg'
4
-
5
- RSpec.configure do |config|
6
- config.expect_with :rspec do |expectations|
7
- expectations.include_chain_clauses_in_custom_matcher_descriptions = true
8
- end
9
-
10
- config.mock_with :rspec do |mocks|
11
- mocks.verify_partial_doubles = true
12
- end
13
-
14
- config.disable_monkey_patching!
15
-
16
- config.warnings = true
17
-
18
- config.include Rack::Test::Methods
19
-
20
- def json_body
21
- @json_body ||= JSON.parse(last_response.body)
22
- end
23
- end