rspec-oj 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: 505fa0b6ec22748476d0b3aa748f36c4b7d1c226dc87403aedadd31442a89122
4
- data.tar.gz: aa0aab2919a98dfc9ade03e6ccee638442c059f9068927a18707282cecf55de3
3
+ metadata.gz: ec6cf0b99055e75cca1f2e9fbbe2ce5e449a7fbf4e99e6dd1067f0b56f498214
4
+ data.tar.gz: '0588ec390270074e1950bc2301a3876378531a8c2e4beb52312417f51d87732a'
5
5
  SHA512:
6
- metadata.gz: ed0c980e4e0af0bf1b8174b01f5a2ebb241dcc44e5162cac15fdfe76b2720277c283ef2780f75108af9c283952c15184e4ebb9ff7e10b230374e3fb6681a69b3
7
- data.tar.gz: 208ae97dc849e475b628976632e67cc52c2f341919c8186f7044cb75f7048ad23bd7613afeb1f2bf36c926b25d156750a6ce08f2bda2c4524284cece0e3a10be
6
+ metadata.gz: a32bb5501a539bb1d0e345a41036430d872a63fcbd59bc5e019fc74399d46e057341f52fc4ab44a8316677cc5672d186d7b4c0bf93e97b7b0136afede2477e3c
7
+ data.tar.gz: 18166e000a9e03e1ffd842f732516d197eb4b1cf97df6594afd5fece34b5b00add7e334d1184ec254352204b325e95d934f3092d8f72bea8ac652404b5739d33
data/lib/rspec-oj.rb CHANGED
@@ -2,17 +2,5 @@
2
2
 
3
3
  require 'oj'
4
4
  require 'rspec'
5
- require 'rspec/oj/errors'
6
- require 'rspec/oj/configuration'
7
- require 'rspec/oj/exclusion'
8
- require 'rspec/oj/helpers'
9
- require 'rspec/oj/messages'
10
- require 'rspec/oj/matchers'
11
- require 'rspec/oj/memory'
12
5
 
13
- module RSpec
14
- module Oj
15
- extend Configuration
16
- extend Memory
17
- end
18
- end
6
+ require 'rspec/oj'
data/lib/rspec/oj.rb ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rspec/oj/errors'
4
+ require 'rspec/oj/configuration'
5
+ require 'rspec/oj/exclusion'
6
+ require 'rspec/oj/helpers'
7
+ require 'rspec/oj/messages'
8
+ require 'rspec/oj/matchers'
9
+ require 'rspec/oj/memory'
10
+
11
+ module RSpec
12
+ module Oj
13
+ extend Configuration
14
+ extend Memory
15
+ end
16
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module Oj
5
- VERSION = '1.0.0'
5
+ VERSION = '1.0.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-oj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
@@ -166,6 +166,7 @@ files:
166
166
  - LICENSE.txt
167
167
  - README.md
168
168
  - lib/rspec-oj.rb
169
+ - lib/rspec/oj.rb
169
170
  - lib/rspec/oj/configuration.rb
170
171
  - lib/rspec/oj/cucumber.rb
171
172
  - lib/rspec/oj/errors.rb