accessible_attribute_matcher 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
  SHA1:
3
- metadata.gz: 9d8fb8a3f3b848c89969a817a757df8b94a6a0ff
4
- data.tar.gz: 4a81bf3ba94cec0db9fb1ecf342c6ba7b7c38a0b
3
+ metadata.gz: 9e361b05456aa1d6c34dc1ad3e8b594a27cd493c
4
+ data.tar.gz: 5791d86623be945265f2ea7a9a3ab8f69e62e2f1
5
5
  SHA512:
6
- metadata.gz: d33a05ff165b760ffac4b386f00a18d58c33f554a52fdf21deb86fd0de3433124bb0bed65592bf6cdc03f035b27fef8c7e39a548c3ca82923e56f09bc1c00ab2
7
- data.tar.gz: b46706dac39f1f490204b55dc06bbd7e7d9182493290ab414ce9785b51fc28bde5503c393536ca2ccf8a7fe32979c0fa3215d7e4dcb809a1ffa31a266f4cc42b
6
+ metadata.gz: 7a9953e4582f3722505311f6063883e185481c17a41c6da069938ee324081834b470e01d01b4c765aa118659f8de183d1a229c0c3a1561a9f9cfba2bab997269
7
+ data.tar.gz: 93dead35bfbb41040ed7fef28158b4332743d518599858cf13d34ec6ea265eba52ab5d3b1cc17bdf7f83335d45b4aee91e657bb542a45d650f82fbcd8b1827eb
@@ -1,5 +1,7 @@
1
1
  rvm:
2
- - 1.9.2
3
2
  - 1.9.3
3
+ - 2.0.0
4
+ - 2.1.0
5
+ - 2.2.0
4
6
 
5
7
  script: bundle exec rspec spec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2012 Byron Bowerman
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.homepage = ""
11
11
  s.summary = 'RSpec matcher for ActiveModel accessible_attributes'
12
12
  s.description = 'Use reflection to spec ActiveModel accessible_attributes'
13
+ s.licenses = %['MIT']
13
14
 
14
15
  s.rubyforge_project = 'accessible_attribute_matcher'
15
16
 
@@ -18,6 +19,8 @@ Gem::Specification.new do |s|
18
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
20
  s.require_paths = ['lib']
20
21
 
22
+ s.required_ruby_version = ">= 1.9.3"
23
+
21
24
  s.add_dependency 'activemodel', '~> 3.2'
22
25
  s.add_dependency 'activesupport', '~> 3.2'
23
26
  s.add_dependency 'rspec', '~> 2'
@@ -1,3 +1,3 @@
1
1
  module AccessibleAttributeMatcher
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: accessible_attribute_matcher
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
  - BM5k
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-29 00:00:00.000000000 Z
11
+ date: 2015-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.2'
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.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '3.2'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '3.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '2'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2'
55
55
  description: Use reflection to spec ActiveModel accessible_attributes
@@ -59,10 +59,11 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - .gitignore
63
- - .rspec
64
- - .travis.yml
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
65
  - Gemfile
66
+ - LICENSE
66
67
  - README.md
67
68
  - Rakefile
68
69
  - accessible_attribute_matcher.gemspec
@@ -72,7 +73,8 @@ files:
72
73
  - spec/spec_helper.rb
73
74
  - spec/thing_spec.rb
74
75
  homepage: ''
75
- licenses: []
76
+ licenses:
77
+ - "'MIT'"
76
78
  metadata: {}
77
79
  post_install_message:
78
80
  rdoc_options: []
@@ -80,17 +82,17 @@ require_paths:
80
82
  - lib
81
83
  required_ruby_version: !ruby/object:Gem::Requirement
82
84
  requirements:
83
- - - '>='
85
+ - - ">="
84
86
  - !ruby/object:Gem::Version
85
- version: '0'
87
+ version: 1.9.3
86
88
  required_rubygems_version: !ruby/object:Gem::Requirement
87
89
  requirements:
88
- - - '>='
90
+ - - ">="
89
91
  - !ruby/object:Gem::Version
90
92
  version: '0'
91
93
  requirements: []
92
94
  rubyforge_project: accessible_attribute_matcher
93
- rubygems_version: 2.1.5
95
+ rubygems_version: 2.4.6
94
96
  signing_key:
95
97
  specification_version: 4
96
98
  summary: RSpec matcher for ActiveModel accessible_attributes