taza 0.9.2.0 → 0.9.2.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/.travis.yml +1 -2
- data/README.md +6 -5
- data/lib/taza/generators/flow_generator.rb +1 -0
- data/lib/taza/version.rb +1 -1
- data/spec/generators/taza_bin_spec.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1eff424ac45cbf590db7dfa0d2aef5f5c7ccd55e
|
4
|
+
data.tar.gz: 8b9def534a0d587b7b567ce46876f3d183cd5554
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb6aef03458885f140f85fce63e2a6991c5e5665c767c58579688e77da7e55cdedaec86e447db953b755b46b5e43163d1e060673cf219aacdd7e20d763e6d34b
|
7
|
+
data.tar.gz: 40ee6a0305731a40af4644224b42685bca7b57df0c2b33afca72c56f689990d24174c62f265b1ca91ba18aabfda7eebe3d40cb379c91ab4f834c6d778e47555d
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
* https://github.com/hammernight/taza
|
6
6
|
* Wiki: http://github.com/scudco/taza/wikis
|
7
|
+
* http://hammernight.github.io/taza/
|
7
8
|
|
8
9
|
## DESCRIPTION:
|
9
10
|
|
@@ -40,11 +41,11 @@ Flows are common actions on a site such as logging in or performing a search.
|
|
40
41
|
Here's an example for starting a project around Google apps:
|
41
42
|
|
42
43
|
```
|
43
|
-
$ taza google
|
44
|
+
$ taza create google
|
44
45
|
$ cd google/
|
45
|
-
$
|
46
|
-
$
|
47
|
-
$
|
46
|
+
$ taza site google
|
47
|
+
$ taza page home_page google
|
48
|
+
$ taza flow search google
|
48
49
|
$ rake spec:isolation:google
|
49
50
|
```
|
50
51
|
|
@@ -52,7 +53,7 @@ That will generate an RSpec HTML report at artifacts/functional/google/index.htm
|
|
52
53
|
|
53
54
|
## REQUIREMENTS:
|
54
55
|
|
55
|
-
* Ruby >= 1.
|
56
|
+
* Ruby >= 1.9.3
|
56
57
|
* A browser.
|
57
58
|
|
58
59
|
## INSTALL:
|
data/lib/taza/version.rb
CHANGED
@@ -2,7 +2,13 @@ require 'spec_helper'
|
|
2
2
|
require 'rubygems'
|
3
3
|
require 'fileutils'
|
4
4
|
|
5
|
-
describe "Taza
|
5
|
+
describe "Taza bin" do
|
6
|
+
|
7
|
+
it 'runs from the terminal' do
|
8
|
+
output = system("taza")
|
9
|
+
expect(output).to be_true
|
10
|
+
|
11
|
+
end
|
6
12
|
|
7
13
|
it "should have an executable script" do
|
8
14
|
pending "Not sure this is really necessary, as this is just testing if command line returns anything. It also breaks JRuby."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: taza
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.2.
|
4
|
+
version: 0.9.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Anderson
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-03-
|
13
|
+
date: 2014-03-26 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|