nuker 1.0.0 → 2.0.0
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 +0 -2
- data/bin/nuker +1 -1
- data/lib/nuker/version.rb +1 -1
- metadata +1 -2
- data/lib/nuker/public/wally-logo.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c2a1c60847b7216d6fd01e2b92455ecfd835e2d
|
|
4
|
+
data.tar.gz: 6a10bcf757ca31ddebef5fae74d7ad02167bf4c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9afceb71cee26c20097feb3a73a9867e8a8b364486b8361a69e8120cb5a7eabc3fcdd9352f20e4660bfe0cb572cfcf6a58333461e984b512a7c03854d4027ad6
|
|
7
|
+
data.tar.gz: 650a9abd73afdf202e348ab9d4f211de78152942cdcbbc36bf1a4f5807f2d79abee1af91847a626c5674c87604b8d432f9ca907c559880d51c63fdf3663343e4
|
data/README.md
CHANGED
|
@@ -33,8 +33,6 @@ Many of the ideas have been borrowed from Matt Wynne's Relish product, but we;
|
|
|
33
33
|
```nuker destroy http://localhost:4567/projects/<project-name>```
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
## Nuker?
|
|
37
|
-
If you walk in to a British fish shop and ask for a nuker you'll receive a [pickled gherkin](https://github.com/cucumber/cucumber/wiki/Gherkin).
|
|
38
36
|
|
|
39
37
|
# Heroku
|
|
40
38
|
Add this to a config.ru:
|
data/bin/nuker
CHANGED
|
@@ -11,7 +11,7 @@ elsif ARGV[0] == "push"
|
|
|
11
11
|
features = []
|
|
12
12
|
Dir.glob(File.join("#{ARGV[2]}", "**/*.feature")).each do |feature_path|
|
|
13
13
|
begin
|
|
14
|
-
gherkin =
|
|
14
|
+
gherkin = Nuker::ParsesFeatures.new.parse(File.read(feature_path))
|
|
15
15
|
rescue
|
|
16
16
|
puts "Couldn't parse '#{feature_path}'"
|
|
17
17
|
puts "Contents:"
|
data/lib/nuker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nuker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marc Bluemner
|
|
@@ -263,7 +263,6 @@ files:
|
|
|
263
263
|
- lib/nuker/public/nuker-logo.png
|
|
264
264
|
- lib/nuker/public/scripts/projects.js
|
|
265
265
|
- lib/nuker/public/skin.css
|
|
266
|
-
- lib/nuker/public/wally-logo.png
|
|
267
266
|
- lib/nuker/search_features.rb
|
|
268
267
|
- lib/nuker/version.rb
|
|
269
268
|
- lib/nuker/views/feature.haml
|
|
Binary file
|