rspec-rcv 0.1.3 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6594a5efc10dfc904a94eab1c8edc61c4671e054
4
- data.tar.gz: 34bee1dfb7ffc22268827ec07d2c8e84c32e67e9
3
+ metadata.gz: ec90fa76a46e06a3ba69e484769b96a1421172fc
4
+ data.tar.gz: faaffb61b21a100fe5f528bdf070f7223cb76ee2
5
5
  SHA512:
6
- metadata.gz: 6af94e5c1df0e47eb082d9ec9a483e1ce35c6bc1f3bb323db09796a862c634bf031d32a8d1e57cdea4bf7cdf5fab8e49de2a0ff1cbd7e77381918817aff0ea25
7
- data.tar.gz: f3b5cad2b80a2289d2d37dacef440edd18f4d46d3ea9aa2cdfa8cb69a81a6e682cc612f69f5b58aec7fba55741ded4e1e5aa178a57ef92aa0e93e1fc2f68a05c
6
+ metadata.gz: cef16582a6c7405e6bd3023af569ce81eeabfb941cf57577bd3019efcb295407b78173b897fe8880aa6ddec7fba06cbb5a200e08d7917fcbd0d455b73c2a37b3
7
+ data.tar.gz: e76fce5d7ddc0f7e2f07a56c0b68ee56cce349d10c54611be77921f75c55a7b0e3eeb61f700061d43b46ba1027591afcbd30068bce7aaaa2a3f509c0e84b1a6c
data/lib/rspec-rcv.rb ADDED
@@ -0,0 +1,32 @@
1
+ require "rspec-rcv/version"
2
+
3
+ require "rspec-rcv/codecs/pretty_json"
4
+ require "rspec-rcv/codecs/yaml"
5
+ require "rspec-rcv/helpers/deep_except"
6
+
7
+ require "rspec-rcv/configuration"
8
+ require "rspec-rcv/test_frameworks/rspec"
9
+
10
+ require "rspec-rcv/handler"
11
+ require "rspec-rcv/data_changed_error"
12
+
13
+
14
+ module RSpecRcv
15
+ extend self
16
+
17
+ module RSpec
18
+ autoload :Metadata, "rspec-rcv/test_frameworks/rspec"
19
+ end
20
+
21
+ def configure
22
+ yield configuration
23
+ end
24
+
25
+ def configuration
26
+ @configuration ||= Configuration.new
27
+ end
28
+
29
+ def config(overrides=nil)
30
+ @configuration.opts(overrides)
31
+ end
32
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module RSpecRcv
2
- VERSION = "0.1.3"
2
+ VERSION = "0.2.0"
3
3
  end
data/rspec-rcv.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'rspec_rcv/version'
4
+ require 'rspec-rcv/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "rspec-rcv"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-rcv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Bussey
@@ -79,15 +79,15 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
- - lib/rspec_rcv.rb
83
- - lib/rspec_rcv/codecs/pretty_json.rb
84
- - lib/rspec_rcv/codecs/yaml.rb
85
- - lib/rspec_rcv/configuration.rb
86
- - lib/rspec_rcv/data_changed_error.rb
87
- - lib/rspec_rcv/handler.rb
88
- - lib/rspec_rcv/helpers/deep_except.rb
89
- - lib/rspec_rcv/test_frameworks/rspec.rb
90
- - lib/rspec_rcv/version.rb
82
+ - lib/rspec-rcv.rb
83
+ - lib/rspec-rcv/codecs/pretty_json.rb
84
+ - lib/rspec-rcv/codecs/yaml.rb
85
+ - lib/rspec-rcv/configuration.rb
86
+ - lib/rspec-rcv/data_changed_error.rb
87
+ - lib/rspec-rcv/handler.rb
88
+ - lib/rspec-rcv/helpers/deep_except.rb
89
+ - lib/rspec-rcv/test_frameworks/rspec.rb
90
+ - lib/rspec-rcv/version.rb
91
91
  - rspec-rcv.gemspec
92
92
  homepage: https://github.com/SalesLoft/rspec-rcv
93
93
  licenses:
data/lib/rspec_rcv.rb DELETED
@@ -1,32 +0,0 @@
1
- require "rspec_rcv/version"
2
-
3
- require "rspec_rcv/codecs/pretty_json"
4
- require "rspec_rcv/codecs/yaml"
5
- require "rspec_rcv/helpers/deep_except"
6
-
7
- require "rspec_rcv/configuration"
8
- require "rspec_rcv/test_frameworks/rspec"
9
-
10
- require "rspec_rcv/handler"
11
- require "rspec_rcv/data_changed_error"
12
-
13
-
14
- module RSpecRcv
15
- extend self
16
-
17
- module RSpec
18
- autoload :Metadata, "rspec-stripe/test_frameworks/rspec"
19
- end
20
-
21
- def configure
22
- yield configuration
23
- end
24
-
25
- def configuration
26
- @configuration ||= Configuration.new
27
- end
28
-
29
- def config(overrides=nil)
30
- @configuration.opts(overrides)
31
- end
32
- end