rspec-deep-matchers 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ require "deep/matchers/deep_eql.rb"
2
+ module RSpec::Matchers
3
+ include Deep::Matchers
4
+ end
@@ -1,4 +1,4 @@
1
- module RSpec
1
+ module Deep
2
2
  module Matchers
3
3
 
4
4
  def deep_eql(expected)
@@ -1 +1 @@
1
- require "rspec/matchers/deep_eql"
1
+ require "deep/matchers"
data/lib/version.rb CHANGED
@@ -1,7 +1,5 @@
1
- module RSpec
2
- module Deep
3
- module Matchers
4
- VERSION = "0.0.1"
5
- end
1
+ module Deep
2
+ module Matchers
3
+ VERSION = "0.0.2"
6
4
  end
7
5
  end
@@ -4,7 +4,7 @@ require "version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "rspec-deep-matchers"
7
- s.version = RSpec::Deep::Matchers::VERSION
7
+ s.version = Deep::Matchers::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["vitalish"]
10
10
  s.email = ["vitalish@4life.com.ua"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-deep-matchers
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - vitalish
@@ -76,9 +76,9 @@ files:
76
76
  - Gemfile
77
77
  - Guardfile
78
78
  - Rakefile
79
+ - lib/deep/matchers.rb
80
+ - lib/deep/matchers/deep_eql.rb
79
81
  - lib/rspec-deep-matchers.rb
80
- - lib/rspec/matchers.rb
81
- - lib/rspec/matchers/deep_eql.rb
82
82
  - lib/version.rb
83
83
  - rspec-deep-matchers.gemspec
84
84
  - spec/lib/rspec/matchers/deep_eql_spec.rb
@@ -1 +0,0 @@
1
- require "rspec/matchers/deep_eql.rb"