fudge 0.1.1 → 0.1.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 +8 -8
- data/lib/fudge/file_finder.rb +1 -1
- data/lib/fudge/version.rb +1 -1
- data/spec/lib/fudge/tasks/flay_spec.rb +2 -1
- data/spec/lib/fudge/tasks/flog_spec.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZDlmNjU0MTU0NGYwMWRjYTZiNWM1MDUxNTg3YzYxNDI1MjEwMzdlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGM0NWEzYWEzZThkYThhODQ1NDBjNDY0MTRiY2Q5ZTBmYWM1MzkyNQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MGI2NjMwNjc4Mzk2OTEwZjkzZmRhNmU2NjhmYzQwZjZhMmVlNTMyMmQwNTNm
|
10
|
+
YTg0N2NlYmViODE4MmZhNGFlY2I4MjNlYmE5YzRmNTQxZDdiOGFmZjQyOTEx
|
11
|
+
YTc1MWUyYWE4OWI2M2I2NGQ2MzBlZWM4MzFmYTM3ZmM2YTIyYWI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZTg0Njk5ODRiNTU5NmNkNjM0MGVjNzQ1MWIwNzljMmQ0YmJkZjNhODY2OWEx
|
14
|
+
ZTMyYmM0ODgxNDUyNzQ0ZTk1ZWUxMjVjNzMzNWIzM2FiYzQ4ODBiNTVmNDc0
|
15
|
+
NDEzYmRjMTcwMmQxNGZiOTMyOGJkMDk4N2YzMjU1MjhlN2ZhZjg=
|
data/lib/fudge/file_finder.rb
CHANGED
data/lib/fudge/version.rb
CHANGED
@@ -26,8 +26,9 @@ EOF
|
|
26
26
|
context 'with :exclude => pattern' do
|
27
27
|
subject {described_class.new :exclude => 'spec/'}
|
28
28
|
|
29
|
+
# Test doesn't check result :(
|
29
30
|
it "filters out the pattern" do
|
30
|
-
cmd = "flay --diff `find . | grep -e '\\.rb$' | grep -v -
|
31
|
+
cmd = "flay --diff `find . | grep -e '\\.rb$' | grep -v -E 'spec/'`"
|
31
32
|
subject.should run_command cmd
|
32
33
|
end
|
33
34
|
end
|
@@ -53,8 +53,9 @@ EOF
|
|
53
53
|
context 'with :exclude => pattern' do
|
54
54
|
subject {described_class.new :exclude => 'spec/'}
|
55
55
|
|
56
|
+
# Test doesn't check result :(
|
56
57
|
it "filters out the pattern" do
|
57
|
-
with_pattern = "flog `find . | grep -e '\\.rb$' | grep -v -
|
58
|
+
with_pattern = "flog `find . | grep -e '\\.rb$' | grep -v -E 'spec/'`"
|
58
59
|
subject.should run_command with_pattern
|
59
60
|
end
|
60
61
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fudge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sage One team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|