volley 0.1.10 → 0.1.11

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.
data/CHANGELOG.md CHANGED
@@ -34,6 +34,40 @@
34
34
  * bug fixes, meta and published plan work
35
35
 
36
36
  ## v0.1.2:
37
+ * fix bug with argument handling, related to docopt changes
38
+ * documentation
39
+ * remove dependency on awesome_print and debug statements. fail me.
40
+ * more docopt fixes
41
+ * handle docopt exit for --version
42
+ * update to use newest docopt version
43
+ * working on getting 'auto' source working
44
+ * add better support for plan#stop
45
+ * fix bugs in volley plans
46
+ * remove dependencies and references to awesome_print
47
+ * action#stop should delegate to plan#stop
48
+ * fix problem with expand path throwing errors when HOME environment variable is not set
49
+ * fix problem with volley:meta when the meta file doesn't exist
50
+ * add -q --quiet option to CLI (bumps log level to warn)
51
+ * add volley:published plan, show all published artifacts (used by jenkins for selecting version to deploy)
52
+ * add version_data method to publisher, primarily to have access to modified time for sorting
53
+
54
+ ## v0.1.10:
55
+ * fix bug with argument handling, related to docopt changes
56
+ * documentation
57
+ * remove dependency on awesome_print and debug statements. fail me.
58
+ * more docopt fixes
59
+ * handle docopt exit for --version
60
+ * update to use newest docopt version
61
+ * working on getting 'auto' source working
62
+ * add better support for plan#stop
63
+ * fix bugs in volley plans
64
+ * remove dependencies and references to awesome_print
65
+ * action#stop should delegate to plan#stop
66
+ * fix problem with expand path throwing errors when HOME environment variable is not set
67
+ * fix problem with volley:meta when the meta file doesn't exist
68
+ * add -q --quiet option to CLI (bumps log level to warn)
69
+ * add volley:published plan, show all published artifacts (used by jenkins for selecting version to deploy)
70
+ * add version_data method to publisher, primarily to have access to modified time for sorting
37
71
  * add code to generate changelog
38
72
  * attempting to publish a duplicate artifact shouldn't throw an error
39
73
  * properly support force=true argument
data/bin/volley CHANGED
@@ -4,6 +4,7 @@ require 'rubygems'
4
4
  require 'docopt'
5
5
  require 'volley'
6
6
  require 'daemons'
7
+ require 'awesome_print'
7
8
 
8
9
  DOC = <<-DOC
9
10
  Usage:
@@ -77,7 +77,6 @@ module Volley
77
77
  end
78
78
 
79
79
  if n.nil? || n.blank?
80
- puts "N not set (project: #@name)"
81
80
  if options[:required]
82
81
  raise "could not automatically determine SCM"
83
82
  else
data/lib/volley/log.rb CHANGED
@@ -18,7 +18,7 @@ module Volley
18
18
  FileUtils.mkdir_p(File.dirname(dest))
19
19
  @loggers[dest] = Yell.new(:datefile, dest,
20
20
  :level => level, :format => format,
21
- :keep => 7, :symlink_original_filename => true)
21
+ :keep => 7, :symlink => true)
22
22
  end
23
23
  end
24
24
 
@@ -3,7 +3,7 @@ unless defined?(Volley::Version)
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 10
6
+ TINY = 11
7
7
  TAG = nil
8
8
  STRING = [MAJOR, MINOR, TINY, TAG].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: volley
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: