githubwatcher 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +5 -0
- data/Rakefile +2 -2
- data/githubwatcher.gemspec +3 -3
- data/lib/githubwatcher/version.rb +1 -1
- metadata +8 -9
- data/.gitignore +0 -4
data/README.md
CHANGED
@@ -87,6 +87,11 @@ Killing process Forever: /usr/bin/githubwatcher with pid 12494...
|
|
87
87
|
|
88
88
|
Your are done!
|
89
89
|
|
90
|
+
## Hacks
|
91
|
+
|
92
|
+
In some env you use `sudo gem install`, so in this case the first time you launch the app use `sudo`,
|
93
|
+
in this way will be generated the `Gemfile.lock`, in future you will be able to run it without `sudo`.
|
94
|
+
|
90
95
|
## Author
|
91
96
|
|
92
97
|
DAddYE, you can follow me on twitter [@daddye](http://twitter.com/daddye)
|
data/Rakefile
CHANGED
@@ -9,9 +9,9 @@ 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
|
12
|
+
puts "Nothing to commit (working directory clean)" and return if `git status -s`.strip == ""
|
13
13
|
version = Bundler.load_gemspec(Dir[File.expand_path('../*.gemspec', __FILE__)].first).version
|
14
|
-
sh "git add .; git commit -m \"Bump to version #{version}\""
|
14
|
+
sh "git add .; git commit -a -m \"Bump to version #{version}\""
|
15
15
|
end
|
16
16
|
|
17
17
|
task :release => :bump
|
data/githubwatcher.gemspec
CHANGED
@@ -13,9 +13,9 @@ Gem::Specification.new do |s|
|
|
13
13
|
|
14
14
|
s.rubyforge_project = "githubwatcher"
|
15
15
|
|
16
|
-
s.files =
|
17
|
-
s.test_files =
|
18
|
-
s.executables =
|
16
|
+
s.files = Dir["**/*"].reject { |f| File.directory?(f) || f == "Gemfile.lock" }
|
17
|
+
s.test_files = []
|
18
|
+
s.executables = %w(githubwatcher)
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
s.add_dependency 'httparty', '~>0.7.8'
|
21
21
|
s.add_dependency 'growl', '~>1.0.3'
|
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: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 7
|
10
|
+
version: 0.0.7
|
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-28 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -76,15 +76,14 @@ extensions: []
|
|
76
76
|
extra_rdoc_files: []
|
77
77
|
|
78
78
|
files:
|
79
|
-
- .gitignore
|
80
|
-
- Gemfile
|
81
|
-
- README.md
|
82
|
-
- Rakefile
|
83
79
|
- bin/githubwatcher
|
80
|
+
- Gemfile
|
84
81
|
- githubwatcher.gemspec
|
85
82
|
- images/icon.png
|
86
|
-
- lib/githubwatcher.rb
|
87
83
|
- lib/githubwatcher/version.rb
|
84
|
+
- lib/githubwatcher.rb
|
85
|
+
- Rakefile
|
86
|
+
- README.md
|
88
87
|
has_rdoc: true
|
89
88
|
homepage: https://github.com/DAddYE/githubwatcher
|
90
89
|
licenses: []
|
data/.gitignore
DELETED