glitter 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/glitter.rb +2 -2
  2. data/lib/glitter/version.rb +1 -1
  3. metadata +5 -7
@@ -48,7 +48,7 @@ module Glitter
48
48
  AppcastXml = 'appcast.xml'
49
49
 
50
50
  include Configurable
51
- attr_configurable :name, :version, :archive, :s3
51
+ attr_configurable :name, :version, :notes, :archive, :s3
52
52
 
53
53
  class S3
54
54
  include Configurable
@@ -179,7 +179,7 @@ module Glitter
179
179
  def push
180
180
  puts "Pushing app #{app.latest.object_name}"
181
181
  # Push the latest release with release notes
182
- app.latest.notes = options[:release_notes]
182
+ app.latest.notes = options[:release_notes] if options[:release_notes].present?
183
183
  app.latest.push
184
184
  puts "Asset pushed to #{app.latest.url}"
185
185
  app.latest.head # Sets this release as the head.
@@ -1,3 +1,3 @@
1
1
  module Glitter
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glitter
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
9
+ - 8
10
+ version: 0.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brad Gessler
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-09 00:00:00 -04:00
19
- default_executable:
18
+ date: 2011-08-02 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: s3
@@ -83,7 +82,6 @@ files:
83
82
  - lib/glitter/version.rb
84
83
  - spec/lib/glitter_spec.rb
85
84
  - spec/spec_helper.rb
86
- has_rdoc: true
87
85
  homepage: https://github.com/polleverywhere/glitter
88
86
  licenses: []
89
87
 
@@ -113,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
111
  requirements: []
114
112
 
115
113
  rubyforge_project: glitter
116
- rubygems_version: 1.4.2
114
+ rubygems_version: 1.8.6
117
115
  signing_key:
118
116
  specification_version: 3
119
117
  summary: Publish Mac software updates with the Sparkle framework and Amazon S3.