taza 0.9.2.0 → 0.9.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c05746f8d89bc25143d61f5dc71b933368cd5917
4
- data.tar.gz: 16c6e84a4298dcf6ad1b30bc1f8ebff60d60998c
3
+ metadata.gz: 1eff424ac45cbf590db7dfa0d2aef5f5c7ccd55e
4
+ data.tar.gz: 8b9def534a0d587b7b567ce46876f3d183cd5554
5
5
  SHA512:
6
- metadata.gz: 85d2b1132eea00c081bbd6689bda7eb2f279556b38d6dee5919bfb56d71b2a6b271c1196a41ec6ae2a1c3fe89a423f214de5b5e3095c82b760aa69dc5e3566aa
7
- data.tar.gz: e48081c6fa2992dfd2cab3f09f2ecbd6ba8f02295ae747ccc7486dffce969c30dc8e22e33bebd9dd80022dde7bd751a3f30883227362dd9a9fab32e81abe277c
6
+ metadata.gz: cb6aef03458885f140f85fce63e2a6991c5e5665c767c58579688e77da7e55cdedaec86e447db953b755b46b5e43163d1e060673cf219aacdd7e20d763e6d34b
7
+ data.tar.gz: 40ee6a0305731a40af4644224b42685bca7b57df0c2b33afca72c56f689990d24174c62f265b1ca91ba18aabfda7eebe3d40cb379c91ab4f834c6d778e47555d
@@ -6,9 +6,8 @@ rvm:
6
6
  - 2.1.0
7
7
  - ruby-head
8
8
  - jruby-19mode
9
- - jruby-head
10
9
  - rbx
11
10
  notifications:
12
11
  email:
13
12
  - pnascimento@gmail.com
14
- - oriekenjr@gmail.com
13
+ - oriekenjr@gmail.com
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
- $ ./script/generate site google
46
- $ ./script/generate page home_page google
47
- $ ./script/generate flow search google
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.8.7
56
+ * Ruby >= 1.9.3
56
57
  * A browser.
57
58
 
58
59
  ## INSTALL:
@@ -1,5 +1,6 @@
1
1
  require 'thor'
2
2
  require 'active_support/all'
3
+ require_relative 'partial_generator'
3
4
 
4
5
  module Taza
5
6
  class FlowGenerator < PartialGenerator
@@ -1,3 +1,3 @@
1
1
  module Taza
2
- VERSION = "0.9.2.0"
2
+ VERSION = "0.9.2.1"
3
3
  end
@@ -2,7 +2,13 @@ require 'spec_helper'
2
2
  require 'rubygems'
3
3
  require 'fileutils'
4
4
 
5
- describe "Taza project generator script" do
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.0
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-25 00:00:00.000000000 Z
13
+ date: 2014-03-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake