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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 082a59c25038680320d3a2c341d5434dc1a82667
4
- data.tar.gz: c8781b7c93cfe778f4510e4ca819926c9bc560fc
3
+ metadata.gz: 248e6ae7e62f7159e242f802e690f481c7bfb056
4
+ data.tar.gz: e2689bb3eb988043e3c5687b2c2168fda72234bd
5
5
  SHA512:
6
- metadata.gz: bc2ea16de7dbd5d79a6cb0b8f5e506d39016b542777b934fefe8724f235a0db93cef6773f5dbbba1d32580df75e7d504acd2b5d66bb4c38d892433dc872c0d8c
7
- data.tar.gz: c0d857c8bfdcb1a80d7dc44fca59d676409b75ada4c5fe2ee4fd245e9c51ae6e1769504fcd04b04d3a7a8e2e0e17c3ddb8a29de2ea8f94ce6dfc1c977fb70a9f
6
+ metadata.gz: c8567e5d1ceeee195e31b11be054ff44448bf22253ca9412262e38c8b3addbd7fe28564bb865376e3b36d669945d82063b3cef05d47ed737ae89674c9894b283
7
+ data.tar.gz: a476f1d02eedb65bdf26064bf504b08863068ece7448b62da3e43fdb2a07ae34d67f236c52e1acb3c24daee344d89c119033662ef786d83bd8d455689df4a106
@@ -7,4 +7,3 @@ require 'runfile/action'
7
7
  require 'runfile/runner'
8
8
  require 'runfile/dsl'
9
9
  require 'runfile/exec'
10
- require 'runfile/deprecations'
@@ -1,3 +1,3 @@
1
1
  module Runfile
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
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.0
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-03-31 00:00:00.000000000 Z
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
@@ -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