approvals 0.0.21 → 0.0.22
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f444a0aa1c3b1b8adeade0729913ffd0bc77af0
|
4
|
+
data.tar.gz: fcb304998044a0f34fdcf339d3bac514e6175529
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0425fc7fab8349a9d762e8f134feebeba3d49c632f2bc3e4dc09df1b35041526acf86a6eda2f98b44b6443c968c2e32778741d984e73632124195f98c666f1ee
|
7
|
+
data.tar.gz: 503eef74aa5ed03cf9591ca43dc771bfc5fde4c5fb2d57bd1823ea7dfab4cbcbd95bebeba4cd1cb448b8fea32bf8bc4909b206fa1934b7eab2c8906170729dfd
|
data/CHANGELOG.md
CHANGED
@@ -2,9 +2,17 @@
|
|
2
2
|
|
3
3
|
### Next Release
|
4
4
|
|
5
|
-
* [#64](https://github.com/kytrinyx/approvals/pull/64) Silence deprecation warnings - [@tmock12](https://github.com/tmock12)
|
6
5
|
* Your contribution here
|
7
6
|
|
7
|
+
### v0.0.22 (2015-10-22)
|
8
|
+
|
9
|
+
* Fix bug in non-binary comparisons.
|
10
|
+
|
11
|
+
### v0.0.21 (2015-10-12)
|
12
|
+
|
13
|
+
* [#64](https://github.com/kytrinyx/approvals/pull/64) Silence deprecation warnings - [@tmock12](https://github.com/tmock12)
|
14
|
+
* Fixed typos and replaced a deprecated standard library method call.
|
15
|
+
|
8
16
|
### v0.0.20 (2015-04-21)
|
9
17
|
|
10
18
|
* [#63](https://github.com/kytrinyx/approvals/issues/62) Make CLI --ask compatible with new or old .approval file. - [@kytrinyx](https://github.com/kytrinyx)
|
data/lib/approvals/approval.rb
CHANGED
@@ -66,7 +66,7 @@ module Approvals
|
|
66
66
|
if BINARY_FORMATS.include?(@format) # Read without ERB
|
67
67
|
IO.read(received_path).chomp == IO.read(approved_path).chomp
|
68
68
|
else
|
69
|
-
IO.read(received_path).chomp == ERB.new(IO.read(approved_path).chomp).result
|
69
|
+
ERB.new(IO.read(received_path).chomp).result == ERB.new(IO.read(approved_path).chomp).result
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
data/lib/approvals/version.rb
CHANGED
data/spec/approvals_spec.rb
CHANGED
@@ -108,6 +108,13 @@ describe Approvals do
|
|
108
108
|
Approvals.verify string, :namer => namer
|
109
109
|
end
|
110
110
|
|
111
|
+
# Bugfix: If only the approved file gets passed through ERB,
|
112
|
+
# then <% (received) is not equal to <% (approved).
|
113
|
+
it "passes the received files through ERB" do
|
114
|
+
string = "<%"
|
115
|
+
Approvals.verify string, :namer => namer
|
116
|
+
end
|
117
|
+
|
111
118
|
describe "supports excluded keys option" do
|
112
119
|
let(:hash) { {:object => {:id => rand(100), :created_at => Time.now, :name => 'test', deleted_at: nil}} }
|
113
120
|
|
@@ -0,0 +1 @@
|
|
1
|
+
<%
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: approvals
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katrina Owen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -128,6 +128,7 @@ files:
|
|
128
128
|
- spec/extensions/rspec_approvals_spec.rb
|
129
129
|
- spec/filter_spec.rb
|
130
130
|
- spec/fixtures/approvals/approvals_passes_approved_files_through_erb.approved.txt
|
131
|
+
- spec/fixtures/approvals/approvals_passes_the_received_files_through_erb.approved.txt
|
131
132
|
- spec/fixtures/approvals/approvals_supports_excluded_keys_option_also_supports_an_array_of_hashes.approved.json
|
132
133
|
- spec/fixtures/approvals/approvals_supports_excluded_keys_option_supports_the_array_writer.approved.txt
|
133
134
|
- spec/fixtures/approvals/approvals_supports_excluded_keys_option_supports_the_hash_writer.approved.txt
|