rspec-sleeping_king_studios 2.1.0.rc.0 → 2.1.0
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 +4 -4
- data/DEVELOPMENT.md +3 -1
- data/lib/rspec/sleeping_king_studios/version.rb +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9748e53c33ae330dafb6e3e9aa2a099cc6478602
|
|
4
|
+
data.tar.gz: 55f4d5e8eb267c66cea63cbeb3a26c97c8b6eb1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: addb8e4d08c8e8aa7ae646533780c54336a1d863759265cf1626788c0b2b988cefb779a62f5e50a52ca9c40cff944f654aefb48a6915800d0d76bba1e219668a
|
|
7
|
+
data.tar.gz: 8a42cc1162b4e4c3e8874973b00e2475c8aea4ae9f94be51f0fa0dbe337a0ee6841b166179a0b80c98e82f52f8d08fa0c5b9073cf245d3b01c72e09637fb8af3
|
data/DEVELOPMENT.md
CHANGED
|
@@ -5,8 +5,10 @@
|
|
|
5
5
|
### Planned Features
|
|
6
6
|
|
|
7
7
|
- Add #have_constant matcher.
|
|
8
|
+
- Add #have_predicate matcher.
|
|
8
9
|
- Add shared examples for 'should have constant', 'should have immutable constant'
|
|
9
|
-
- Add shared examples for 'should
|
|
10
|
+
- Add shared examples for 'should have predicate'
|
|
11
|
+
- Add shared examples for 'should not have reader/writer'
|
|
10
12
|
- Add shared examples for #belongs_to, #has_one, #has_many, #embedded_in, #embeds_one, #embeds_many.
|
|
11
13
|
- Add shared examples for core ActiveModel validations.
|
|
12
14
|
|
|
@@ -15,9 +15,9 @@ module RSpec
|
|
|
15
15
|
# Patch version.
|
|
16
16
|
PATCH = 0
|
|
17
17
|
# Prerelease version.
|
|
18
|
-
PRERELEASE =
|
|
18
|
+
PRERELEASE = nil
|
|
19
19
|
# Build metadata.
|
|
20
|
-
BUILD =
|
|
20
|
+
BUILD = nil
|
|
21
21
|
|
|
22
22
|
# Generates the gem version string from the Version constants.
|
|
23
23
|
def self.to_gem_version
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-sleeping_king_studios
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob "Merlin" Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -229,9 +229,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
229
229
|
version: '0'
|
|
230
230
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
231
|
requirements:
|
|
232
|
-
- - "
|
|
232
|
+
- - ">="
|
|
233
233
|
- !ruby/object:Gem::Version
|
|
234
|
-
version:
|
|
234
|
+
version: '0'
|
|
235
235
|
requirements: []
|
|
236
236
|
rubyforge_project:
|
|
237
237
|
rubygems_version: 2.4.6
|
|
@@ -239,3 +239,4 @@ signing_key:
|
|
|
239
239
|
specification_version: 4
|
|
240
240
|
summary: A collection of RSpec patches and custom matchers.
|
|
241
241
|
test_files: []
|
|
242
|
+
has_rdoc:
|