skellington 0.3.0 → 0.3.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/README.md +2 -1
- data/config/config.yaml +2 -0
- data/features/cukes.feature +5 -0
- data/lib/skellington/version.rb +1 -1
- data/lib/templates/features/step_definitions/app_steps.rb.eruby +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3534294632442313c575e0ed2561ae99967803d4
|
|
4
|
+
data.tar.gz: 75df2eeee571d42fcbc755ffa046a846745e2edb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68f1142354dbe09b704f871db40037f95fb3c42dddf66aec4fa7cfb3f6d5a641ce02570f25871c42866f2e32ec636a3c46dd08aa30909d1ded7423acc1fbe2ea
|
|
7
|
+
data.tar.gz: fa1a2c9c4498d5f95f2f8b5f1ce98742341f0849dda48e9ae7b05bfdf8ed3cd3b886c21c63633c8fbd51d100ce1774aa0829e2b360772f697884a9054c48ea01
|
data/README.md
CHANGED
|
@@ -18,6 +18,7 @@ Generate tedious [Cucumber](http://cukes.info/) and [Sinatra](http://www.sinatra
|
|
|
18
18
|
Generating naming_things_is_hard/.ruby-version...done
|
|
19
19
|
Generating naming_things_is_hard/config.ru...done
|
|
20
20
|
Generating naming_things_is_hard/features/naming_things_is_hard.feature...done
|
|
21
|
+
Generating naming_things_is_hard/features/step_definitions/naming_things_is_hard_steps.rb...done
|
|
21
22
|
Generating naming_things_is_hard/features/support/env.rb...done
|
|
22
23
|
Generating naming_things_is_hard/lib/naming_things_is_hard.rb...done
|
|
23
24
|
|
|
@@ -44,4 +45,4 @@ This assumes a bunch of things, at least:
|
|
|
44
45
|
|
|
45
46
|
* That you have a reasonable git installation
|
|
46
47
|
|
|
47
|
-
Also, it will set up the new project using whatever version of ruby is cromulent when you run it
|
|
48
|
+
Also, it will set up the new project using whatever version of ruby is cromulent when you run it
|
data/config/config.yaml
CHANGED
|
@@ -23,6 +23,8 @@ files:
|
|
|
23
23
|
# but the output file substitutes it like this, where wormname is an attribute
|
|
24
24
|
# on the Generator object
|
|
25
25
|
outpath: first/wormname
|
|
26
|
+
features/step_definitions/app_steps.rb:
|
|
27
|
+
outpath: app/wormname
|
|
26
28
|
features/support/env.rb:
|
|
27
29
|
lib/app.rb:
|
|
28
30
|
outpath: app/wormname
|
data/features/cukes.feature
CHANGED
|
@@ -20,3 +20,8 @@ Feature: Generate skellington
|
|
|
20
20
|
"""
|
|
21
21
|
DummyApp
|
|
22
22
|
"""
|
|
23
|
+
|
|
24
|
+
Scenario: generate 'step_defintions' directory
|
|
25
|
+
When I successfully run `skellington generate dummy_app`
|
|
26
|
+
Then a directory named "dummy_app/features/step_definitions" should exist
|
|
27
|
+
And a file named "dummy_app/features/step_definitions/dummy_app_steps.rb" should exist
|
data/lib/skellington/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skellington
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- pikesley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -207,6 +207,7 @@ files:
|
|
|
207
207
|
- lib/templates/Rakefile.eruby
|
|
208
208
|
- lib/templates/config.ru.eruby
|
|
209
209
|
- lib/templates/features/first.feature.eruby
|
|
210
|
+
- lib/templates/features/step_definitions/app_steps.rb.eruby
|
|
210
211
|
- lib/templates/features/support/env.rb.eruby
|
|
211
212
|
- lib/templates/lib/app.rb.eruby
|
|
212
213
|
- lib/templates/post-run.eruby
|