behave 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- behave (0.2.4)
4
+ behave (0.2.5)
5
5
  rest-client
6
6
  rubyzip
7
7
 
@@ -12,7 +12,7 @@ module Behave
12
12
  attr_accessor :host, :user, :pass, :key, :dir, :manual, :contents
13
13
 
14
14
  def initialize(args)
15
- @dir = "./"
15
+ @dir = "features/"
16
16
  @manual = false
17
17
  args.each do |k,v|
18
18
  instance_variable_set("@#{k}", v) unless v.nil? or k == 'contents'
@@ -145,7 +145,7 @@ module Behave
145
145
  end
146
146
 
147
147
  opts.on("-d", "--directory [DIR]",
148
- "Specify output directory (default './')") do |dir|
148
+ "Specify output directory (default 'features')") do |dir|
149
149
  dir << '/' unless dir[-1,1] == '/'
150
150
  map["dir"] = dir
151
151
  end
@@ -1,3 +1,3 @@
1
1
  module Behave
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: behave
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.5
5
+ version: 0.2.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jack Bastow