crystalline 1.7.0 → 1.7.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 +4 -4
- data/CHANGELOG +10 -1
- data/lib/crystalline/spec/rspec.rb +9 -1
- data/lib/crystalline/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f43135d645dad595ead0c1565b54a392527cabee310c61c63f3b3ac24947a97c
|
|
4
|
+
data.tar.gz: d085122d328b6c0a289cb0ba841f08d1b6dc1a580747d6a8ef92f8bde5944ac6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad938b0a25f2a46ff59bd17e4555a7dd144de052630eddd5b6698dd60ea78f2fbaad68c0017ad5d62a3fe883b7ac1437e639e93689b71c189d3c7084fe0e2964
|
|
7
|
+
data.tar.gz: f7781ed3cce36486ea6d72b0069c789d0121060bdb18f94470a42a40b213d97ede860477ab94207f7e1ddcd1b9a6823913c83dad9eb3b8216d0f306621c1d70c
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
1.7.1:
|
|
2
|
+
- fix rspec config, general dusting off.
|
|
3
|
+
|
|
4
|
+
1.7.0:
|
|
5
|
+
- Unarchive the project, remove `mutant`
|
|
6
|
+
|
|
7
|
+
1.6.0 -> whenever:
|
|
8
|
+
- at some point I abandoned this, and didn't update this file. Sorry.
|
|
9
|
+
|
|
1
10
|
1.3.1:
|
|
2
11
|
- Patch around a GLI weirdness, wherein not setting an option sometimes
|
|
3
12
|
results in trying to call #gsub on `nil`
|
|
@@ -24,6 +33,6 @@
|
|
|
24
33
|
|
|
25
34
|
1.0.0:
|
|
26
35
|
Basic functionality -- include 'crystalline/spec' in your spec_helper, include
|
|
27
|
-
'crystalline/rake' in your rake file. Receive
|
|
36
|
+
'crystalline/rake' in your rake file. Receive useful stuff.
|
|
28
37
|
|
|
29
38
|
|
|
@@ -8,7 +8,15 @@ module Crystalline
|
|
|
8
8
|
allow_message_expectations_on_nil
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
# Enable flags like --only-failures and --next-failure
|
|
12
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
|
13
|
+
|
|
14
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
15
|
+
config.disable_monkey_patching!
|
|
16
|
+
|
|
17
|
+
config.expect_with :rspec do |c|
|
|
18
|
+
c.syntax = :should
|
|
19
|
+
end
|
|
12
20
|
|
|
13
21
|
config.extend(Crystalline::Spec::DSL::Macros)
|
|
14
22
|
end
|
data/lib/crystalline/version.rb
CHANGED