squash 0.0.3 → 0.0.4
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.
data/Gemfile.lock
CHANGED
|
@@ -5,16 +5,16 @@ So that I can get up and running quick
|
|
|
5
5
|
|
|
6
6
|
Scenario: Generate scaffold application
|
|
7
7
|
Given I'm in an empty directory
|
|
8
|
-
When I run "squash clickmonkey"
|
|
8
|
+
When I run "bundle exec squash clickmonkey"
|
|
9
9
|
Then the output should contain "Created Squash application: clickmonkey"
|
|
10
10
|
And a file named "clickmonkey/support/paths.rb" should exist
|
|
11
11
|
|
|
12
12
|
Scenario: No command-line argument
|
|
13
13
|
Given I'm in an empty directory
|
|
14
|
-
When I run "squash"
|
|
14
|
+
When I run "bundle exec squash"
|
|
15
15
|
Then the output should contain "Create a new empty application with: squash <application_name>"
|
|
16
16
|
|
|
17
17
|
Scenario: More than one command-line argument
|
|
18
18
|
Given I'm in an empty directory
|
|
19
|
-
When I run "squash one two"
|
|
19
|
+
When I run "bundle exec squash one two"
|
|
20
20
|
Then the output should contain "Create a new empty application with: squash <application_name>"
|
|
@@ -5,8 +5,8 @@ So that I can verify that the entire stack works
|
|
|
5
5
|
|
|
6
6
|
Scenario: Run smoke test
|
|
7
7
|
Given I'm in an empty directory
|
|
8
|
-
When I run "squash clickmonkey"
|
|
8
|
+
When I run "bundle exec squash clickmonkey"
|
|
9
9
|
And I cd to "clickmonkey"
|
|
10
10
|
And I run "bundle install"
|
|
11
|
-
And I run "cucumber"
|
|
11
|
+
And I run "bundle exec cucumber"
|
|
12
12
|
Then the output should contain "1 scenario (1 passed)"
|
data/lib/squash/version.rb
CHANGED
data/template/Gemfile
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
source :rubygems
|
|
2
2
|
|
|
3
|
-
gem 'squash' , '= 0.0.
|
|
3
|
+
gem 'squash' , '= 0.0.4'
|
|
4
|
+
|
|
4
5
|
gem 'cucumber' , '~> 0.10.0'
|
|
5
6
|
gem 'rspec' , '~> 2.3.0'
|
|
6
|
-
gem 'capybara' , '~> 0.4.0' # at the moment, version conflict with the capybara required by akephalos
|
|
7
|
+
#gem 'capybara' , '~> 0.4.0' # at the moment, version conflict with the capybara required by akephalos
|
|
7
8
|
gem 'akephalos' , '~> 0.2.4'
|
|
8
9
|
gem 'syntax' , '~> 1.0.0' # Colored sintax in Cucumber's HTML output
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.0.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Paolo "Nusco" Perrotta
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-12-
|
|
17
|
+
date: 2010-12-17 00:00:00 +01:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -140,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
requirements:
|
|
141
141
|
- - ">="
|
|
142
142
|
- !ruby/object:Gem::Version
|
|
143
|
-
hash:
|
|
143
|
+
hash: 1647676223693851052
|
|
144
144
|
segments:
|
|
145
145
|
- 0
|
|
146
146
|
version: "0"
|
|
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
149
|
requirements:
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
hash:
|
|
152
|
+
hash: 1647676223693851052
|
|
153
153
|
segments:
|
|
154
154
|
- 0
|
|
155
155
|
version: "0"
|