api_matchers 0.6.1 → 0.6.2

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: 5898931ec179ab8dd81ed8552603cb2b8af12579
4
- data.tar.gz: bf28c99233720e3051d57ddf4b877720439214a4
3
+ metadata.gz: fbc6b3245daef5ad073c5b76fe8ae742bb1c42ae
4
+ data.tar.gz: 991fce87bc6a1811f989047013d4e9809efa4613
5
5
  SHA512:
6
- metadata.gz: 51c74fc5d3cd98e4d9b94a72c5c2301f1abed5bab16173eb20332b31f723ad206a4e95eb28931fcf6e260fa9b6d91d8d2cc09dbab35774363af8f958fc64ca48
7
- data.tar.gz: 6c13e7610d754784d6e5d7ea21223cf52c54103d5e09fad374779a3366d2a5e3cb1d0d2a3a902fcfcd3aac086ec1c581d90a0f6ad6de56060774d6f49faaaad6
6
+ metadata.gz: 8e412b829ad1de0abdcfea843215bb021955532053acc07912d90f1d32b056a0d80a4ac30d6f8c6cf615d07b5559fc52d16af482128001406e1277e518adc626
7
+ data.tar.gz: 257f423b65e4ccf760dfe45caa912cd744e440c5b597239923829762481d22c8ad0bf005a2f0623fe0acd93a54435e3408d945bcefc6461b17d0d7cc057c4a6d
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
@@ -0,0 +1,46 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ api_matchers (0.6.1)
5
+ activesupport (>= 3.2.5)
6
+ nokogiri (>= 1.5.2)
7
+ rspec (>= 3.1)
8
+
9
+ GEM
10
+ remote: http://rubygems.org/
11
+ specs:
12
+ activesupport (4.2.2)
13
+ i18n (~> 0.7)
14
+ json (~> 1.7, >= 1.7.7)
15
+ minitest (~> 5.1)
16
+ thread_safe (~> 0.3, >= 0.3.4)
17
+ tzinfo (~> 1.1)
18
+ diff-lcs (1.2.5)
19
+ i18n (0.7.0)
20
+ json (1.8.3)
21
+ mini_portile (0.6.2)
22
+ minitest (5.7.0)
23
+ nokogiri (1.6.6.2)
24
+ mini_portile (~> 0.6.0)
25
+ rspec (3.3.0)
26
+ rspec-core (~> 3.3.0)
27
+ rspec-expectations (~> 3.3.0)
28
+ rspec-mocks (~> 3.3.0)
29
+ rspec-core (3.3.0)
30
+ rspec-support (~> 3.3.0)
31
+ rspec-expectations (3.3.0)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.3.0)
34
+ rspec-mocks (3.3.0)
35
+ diff-lcs (>= 1.2.0, < 2.0)
36
+ rspec-support (~> 3.3.0)
37
+ rspec-support (3.3.0)
38
+ thread_safe (0.3.5)
39
+ tzinfo (1.2.2)
40
+ thread_safe (~> 0.1)
41
+
42
+ PLATFORMS
43
+ ruby
44
+
45
+ DEPENDENCIES
46
+ api_matchers!
@@ -1,3 +1,7 @@
1
+ ## 0.6.2
2
+
3
+ * Added RSpec 3.2.x and 3.3.x compatibility (Lucas Caton)
4
+
1
5
  ## 0.6.1
2
6
 
3
7
  * Add description to matchers. This makes RSpec not complain about missing
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = APIMatchers::VERSION
17
17
 
18
- gem.add_dependency 'rspec', '~> 3.1'
18
+ gem.add_dependency 'rspec', '>= 3.1'
19
19
  gem.add_dependency 'activesupport', '>= 3.2.5'
20
20
  gem.add_dependency 'nokogiri', '>= 1.5.2'
21
21
  end
@@ -1,3 +1,3 @@
1
1
  module APIMatchers
2
- VERSION = '0.6.1'
2
+ VERSION = '0.6.2'
3
3
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas D'Stefano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-04 00:00:00.000000000 Z
11
+ date: 2015-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
27
  - !ruby/object:Gem::Dependency
@@ -64,6 +64,7 @@ files:
64
64
  - ".rvmrc.example"
65
65
  - ".travis.yml"
66
66
  - Gemfile
67
+ - Gemfile.lock
67
68
  - History.markdown
68
69
  - LICENSE
69
70
  - README.markdown
@@ -133,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
134
  version: '0'
134
135
  requirements: []
135
136
  rubyforge_project:
136
- rubygems_version: 2.2.2
137
+ rubygems_version: 2.4.5
137
138
  signing_key:
138
139
  specification_version: 4
139
140
  summary: Collection of RSpec matchers for create your API.