guard-webhook-notifier 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac3cc2f1445cf3f0e6744e0644706bb3a4f12d4e
4
- data.tar.gz: a791b8a82874d5478eb9456a2bdbd1cd428cafaa
3
+ metadata.gz: 1349f31883866481ae35cda6b4596c19e9b33be1
4
+ data.tar.gz: 9503712a8033c4d94aabb5a64168830f3ded2b1e
5
5
  SHA512:
6
- metadata.gz: fdd73cdb1749c20408b14a6a58eff097a8b8b81975a405ca5a090a48555ea3b3c8d82aa42f018993896c0ca913b31902fa5f2f90ac66cfca5852111d47796bcc
7
- data.tar.gz: 004ad9caeb4f9a3558ea926a02b8ba2a5c0b7b600c14049b06c8fda0e5b90faf22768f2d449e5aa034824fbb932dc8a06e76127f33d99c7426a54faedc5b5287
6
+ metadata.gz: 171da3a6aa4f426eeb2b84c583f0439b87b96823a99c96a0eb8e7e523091c67f113b8b5a04bb0456e3fc63851995be5e08841820dd5d55211f1fc145c406f304
7
+ data.tar.gz: 011863f497bfe31b8edf8fd640cff9473ef1e12fbbefefefbbd41600ff7173eaaf95da9180b2507d42f89c4b5b96d93d72321fa5958463e7733c459e634ad6b9
@@ -1,3 +1,3 @@
1
1
  module GuardWebHookNotifier
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -7,4 +7,6 @@ module GuardWebHookNotifier
7
7
  def register(name = 'webhook')
8
8
  Guard::Notifier::NOTIFIERS << { name => Notifier }
9
9
  end
10
+
11
+ module_function :register
10
12
  end
@@ -0,0 +1,5 @@
1
+ require "spec_helper"
2
+
3
+ describe GuardWebHookNotifier do
4
+ it { expect(described_class).to respond_to(:register) }
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-webhook-notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuku Takahashi
@@ -112,6 +112,7 @@ files:
112
112
  - lib/guard-webhook-notifier/notifier.rb
113
113
  - lib/guard-webhook-notifier/version.rb
114
114
  - spec/guard-webhook-notifier/notifier_spec.rb
115
+ - spec/guard-webhook-notifier_spec.rb
115
116
  - spec/spec_helper.rb
116
117
  homepage: https://github.com/yuku-t/guard-webhook-notifier
117
118
  licenses:
@@ -139,4 +140,5 @@ specification_version: 4
139
140
  summary: Notify Guard Events by HTTP POST Requests
140
141
  test_files:
141
142
  - spec/guard-webhook-notifier/notifier_spec.rb
143
+ - spec/guard-webhook-notifier_spec.rb
142
144
  - spec/spec_helper.rb