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 +1 -1
- data/bin/githubwatcher +4 -3
- data/githubwatcher.gemspec +1 -1
- data/lib/githubwatcher/version.rb +1 -1
- metadata +7 -7
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
|
-
|
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 =~ /
|
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
|
data/githubwatcher.gemspec
CHANGED
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:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
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-
|
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:
|
61
|
+
hash: 17
|
62
62
|
segments:
|
63
63
|
- 0
|
64
64
|
- 2
|
65
|
-
-
|
66
|
-
version: 0.2.
|
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
|