githubwatcher 0.0.5 → 0.0.6

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
@@ -9,7 +9,7 @@ end
9
9
 
10
10
  desc "Bump version on github"
11
11
  task :bump do
12
- puts "Nothing to commit (working directory clean)" and return if `git status -s`.strip == ""
12
+ puts "Nothing to commit (working directory clean)" and return true if `git status -s`.strip == ""
13
13
  version = Bundler.load_gemspec(Dir[File.expand_path('../*.gemspec', __FILE__)].first).version
14
14
  sh "git add .; git commit -m \"Bump to version #{version}\""
15
15
  end
data/bin/githubwatcher CHANGED
@@ -1,11 +1,12 @@
1
1
  #!/usr/bin/ruby
2
- $: << File.expand_path('../../lib', __FILE__) # For unknow reason bundler don't always add this path
2
+ ENV['BUNDLE_GEMFILE'] = File.expand_path('../../Gemfile', __FILE__)
3
+
3
4
  require 'rubygems' unless defined?(Gem)
4
- require 'forever'
5
5
  require 'bundler/setup'
6
+ require 'forever'
6
7
  require 'githubwatcher'
7
8
 
8
- if ARGV.any? { |cmd| cmd =~ /config(?:ure)?/i }
9
+ if ARGV.any? { |cmd| cmd =~ /configure/ }
9
10
  editor = `which mate`.chomp! || `which vim`.chomp!
10
11
  puts "Im unable to find an editor, open manually ~/.githubwatcher/repos.yaml" and exit unless editor
11
12
  system editor, File.expand_path('~/.githubwatcher/repos.yaml') and exit
@@ -19,5 +19,5 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["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.1'
22
+ s.add_dependency 'foreverb', '~>0.2.3'
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module Githubwatcher
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
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: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
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-07-14 00:00:00 +02:00
18
+ date: 2011-07-22 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: 21
61
+ hash: 17
62
62
  segments:
63
63
  - 0
64
64
  - 2
65
- - 1
66
- version: 0.2.1
65
+ - 3
66
+ version: 0.2.3
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