approvals 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/bin/approvals +1 -1
- data/lib/approvals/version.rb +1 -1
- data/lib/{cli.rb → commandline.rb} +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05e4a187eb113b076fa45cf703b6d18387566b4b
|
4
|
+
data.tar.gz: f1fb16a23a52fd23e9977f38454d56fa39cbe259
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e21e4bc8fa547a3f9435c23d5fa2dd38ab287c78b401ba34b2d6db129cd8207a91493777eabfc12e7e793e7ce2ea89a5b8a80d2c0252f84306790b7f72652ce
|
7
|
+
data.tar.gz: f74e954adff3805bfa78a28befd40c0cd9f9cf26ef9c48a28efde0dca7a1059660ba7ce4a4f853ba832d4347871d90e1bc2cf8fc9a7bc15624293cb78da29e36
|
data/README.md
CHANGED
@@ -141,9 +141,9 @@ Approvals.verify(thing, :name => "the name of your test")
|
|
141
141
|
### Formatting
|
142
142
|
|
143
143
|
You can pass a format for your output before it gets written to the file.
|
144
|
-
At the moment, only xml, html, and json are supported.
|
144
|
+
At the moment, only text, xml, html, and json are supported.
|
145
145
|
|
146
|
-
Simply add a `:format => :xml`, `:format => :html`, or `:format => :json` option to the example:
|
146
|
+
Simply add a `:format => :text`, `:format => :xml`, `:format => :html`, or `:format => :json` option to the example:
|
147
147
|
|
148
148
|
```ruby
|
149
149
|
page = "<html><head></head><body><h1>ZOMG</h1></body></html>"
|
data/bin/approvals
CHANGED
data/lib/approvals/version.rb
CHANGED
File without changes
|
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.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katrina Owen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -121,7 +121,7 @@ files:
|
|
121
121
|
- lib/approvals/writers/json_writer.rb
|
122
122
|
- lib/approvals/writers/text_writer.rb
|
123
123
|
- lib/approvals/writers/xml_writer.rb
|
124
|
-
- lib/
|
124
|
+
- lib/commandline.rb
|
125
125
|
- spec/approvals_spec.rb
|
126
126
|
- spec/configuration_spec.rb
|
127
127
|
- spec/dotfile_spec.rb
|
@@ -204,3 +204,4 @@ signing_key:
|
|
204
204
|
specification_version: 4
|
205
205
|
summary: Approval Tests for Ruby
|
206
206
|
test_files: []
|
207
|
+
has_rdoc:
|