githubwatcher 0.0.8 → 0.0.9

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/Rakefile CHANGED
@@ -10,8 +10,12 @@ end
10
10
  desc "Bump version on github"
11
11
  task :bump do
12
12
  puts "Nothing to commit (working directory clean)" and return if `git status -s`.strip == ""
13
- version = Bundler.load_gemspec(Dir[File.expand_path('../*.gemspec', __FILE__)].first).version
14
- sh "git add .; git commit -a -m \"Bump to version #{version}\""
13
+ if `git status -s`.strip == ""
14
+ puts "\e[31mNothing to commit (working directory clean)\e[0m"
15
+ else
16
+ version = Bundler.load_gemspec(Dir[File.expand_path('../*.gemspec', __FILE__)].first).version
17
+ sh "git add .; git commit -a -m \"Bump to version #{version}\""
18
+ end
15
19
  end
16
20
 
17
- task :release => :bump
21
+ task :release => :bump
@@ -15,9 +15,9 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.files = Dir["**/*"].reject { |f| File.directory?(f) || f == "Gemfile.lock" }
17
17
  s.test_files = []
18
- s.executables = %w(githubwatcher)
19
- s.require_paths = ["lib"]
18
+ s.executables = %w[githubwatcher]
19
+ s.require_paths = %w[lib]
20
20
  s.add_dependency 'httparty', '~>0.7.8'
21
21
  s.add_dependency 'growl', '~>1.0.3'
22
- s.add_dependency 'foreverb', '~>0.2.3'
23
- end
22
+ s.add_dependency 'foreverb', '~>0.2.6'
23
+ end
@@ -1,3 +1,3 @@
1
1
  module Githubwatcher
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: githubwatcher
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 8
10
- version: 0.0.8
9
+ - 9
10
+ version: 0.0.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Davide D'Agostino
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-09 00:00:00 +02:00
18
+ date: 2011-08-27 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -58,12 +58,12 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- hash: 17
61
+ hash: 27
62
62
  segments:
63
63
  - 0
64
64
  - 2
65
- - 3
66
- version: 0.2.3
65
+ - 6
66
+ version: 0.2.6
67
67
  type: :runtime
68
68
  version_requirements: *id003
69
69
  description: Github Growl Watcher, watch any project and receive growl notification for updates, new watchers, forks and issues