rspec-oj 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rspec-oj.rb +1 -13
- data/lib/rspec/oj.rb +16 -0
- data/lib/rspec/oj/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec6cf0b99055e75cca1f2e9fbbe2ce5e449a7fbf4e99e6dd1067f0b56f498214
|
4
|
+
data.tar.gz: '0588ec390270074e1950bc2301a3876378531a8c2e4beb52312417f51d87732a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
data/lib/rspec/oj/version.rb
CHANGED
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.
|
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
|