guard-notifier-git_auto_commit 0.1.1 → 0.1.2

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.
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/guard/notifiers/git_auto_commit', __FILE__)
2
+ require File.expand_path('../lib/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["tomykaira"]
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = %q{GitAutoCommit receives guard's notification and commit with build status}
9
9
  gem.homepage = ""
10
10
 
11
- gem.add_dependency('guard', '~>1.2.3')
11
+ gem.add_dependency('guard', '~>1.6.2')
12
12
  gem.add_development_dependency('rake')
13
13
 
14
14
  gem.files = `git ls-files`.split($\)
@@ -3,7 +3,6 @@ require 'guard/notifier'
3
3
  module Guard
4
4
  module Notifier
5
5
  module GitAutoCommit
6
- VERSION = "0.1.1"
7
6
 
8
7
  extend self
9
8
 
@@ -47,6 +46,6 @@ module Guard
47
46
  end
48
47
  end
49
48
 
50
- if defined?(Guard::Notifier::NOTIFIERS)
51
- Guard::Notifier::NOTIFIERS[:git_auto_commit] = Guard::Notifier::GitAutoCommit
49
+ if defined?(::Guard::Notifier::NOTIFIERS)
50
+ ::Guard::Notifier::NOTIFIERS << [[:git_auto_commit, ::Guard::Notifier::GitAutoCommit]]
52
51
  end
@@ -0,0 +1,7 @@
1
+ module Guard
2
+ module Notifier
3
+ module GitAutoCommit
4
+ VERSION = "0.1.2"
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-notifier-git_auto_commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-23 00:00:00.000000000 Z
12
+ date: 2013-03-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 1.2.3
21
+ version: 1.6.2
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 1.2.3
29
+ version: 1.6.2
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: rake
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -58,6 +58,7 @@ files:
58
58
  - guard-notifier-git_auto_commit.gemspec
59
59
  - lib/guard-notifier-git_auto_commit.rb
60
60
  - lib/guard/notifiers/git_auto_commit.rb
61
+ - lib/version.rb
61
62
  homepage: ''
62
63
  licenses: []
63
64
  post_install_message:
@@ -72,7 +73,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
73
  version: '0'
73
74
  segments:
74
75
  - 0
75
- hash: 43669117
76
+ hash: 367039763
76
77
  required_rubygems_version: !ruby/object:Gem::Requirement
77
78
  none: false
78
79
  requirements:
@@ -81,10 +82,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
82
  version: '0'
82
83
  segments:
83
84
  - 0
84
- hash: 43669117
85
+ hash: 367039763
85
86
  requirements: []
86
87
  rubyforge_project:
87
- rubygems_version: 1.8.24
88
+ rubygems_version: 1.8.23
88
89
  signing_key:
89
90
  specification_version: 3
90
91
  summary: GitAutoCommit receives guard's notification and commit with build status