githubwatcher 0.0.6 → 0.0.7

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/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 true if `git status -s`.strip == ""
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
@@ -13,9 +13,9 @@ Gem::Specification.new do |s|
13
13
 
14
14
  s.rubyforge_project = "githubwatcher"
15
15
 
16
- s.files = `git ls-files`.split("\n")
17
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
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'
@@ -1,3 +1,3 @@
1
1
  module Githubwatcher
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
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-22 00:00:00 +02:00
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
@@ -1,4 +0,0 @@
1
- *.gem
2
- .bundle
3
- Gemfile.lock
4
- pkg/*