runfile 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/runfile.rb +0 -1
- data/lib/runfile/version.rb +1 -1
- metadata +2 -3
- data/lib/runfile/deprecations.rb +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 248e6ae7e62f7159e242f802e690f481c7bfb056
|
4
|
+
data.tar.gz: e2689bb3eb988043e3c5687b2c2168fda72234bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8567e5d1ceeee195e31b11be054ff44448bf22253ca9412262e38c8b3addbd7fe28564bb865376e3b36d669945d82063b3cef05d47ed737ae89674c9894b283
|
7
|
+
data.tar.gz: a476f1d02eedb65bdf26064bf504b08863068ece7448b62da3e43fdb2a07ae34d67f236c52e1acb3c24daee344d89c119033662ef786d83bd8d455689df4a106
|
data/lib/runfile.rb
CHANGED
data/lib/runfile/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runfile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colsole
|
@@ -136,7 +136,6 @@ files:
|
|
136
136
|
- bin/run!
|
137
137
|
- lib/runfile.rb
|
138
138
|
- lib/runfile/action.rb
|
139
|
-
- lib/runfile/deprecations.rb
|
140
139
|
- lib/runfile/docopt_helper.rb
|
141
140
|
- lib/runfile/dsl.rb
|
142
141
|
- lib/runfile/exec.rb
|
data/lib/runfile/deprecations.rb
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
module Runfile
|
2
|
-
|
3
|
-
module DSL
|
4
|
-
# The name 'name' was causing some issues in some debugging sessions
|
5
|
-
# with pry and some other issues. It is replaced with 'title'
|
6
|
-
def name(name=nil)
|
7
|
-
say! "!txtred!Warning:\n You are using the deprecated directive 'name' in your Runfile.\n Use 'title' instead.\n"
|
8
|
-
Runner.instance.name = name if name
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|