collins_notify 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Gemfile +1 -0
  2. data/Rakefile +1 -0
  3. data/VERSION +1 -1
  4. data/collins_notify.gemspec +72 -0
  5. metadata +19 -2
data/Gemfile CHANGED
@@ -1,5 +1,6 @@
1
1
  source :rubygems
2
2
 
3
+ gem 'addressable', '~> 2.3.2'
3
4
  gem 'collins_client', '~> 0.2.10'
4
5
  gem 'hipchat', '~> 0.7.0'
5
6
  gem 'mail', '~> 2.4.4'
data/Rakefile CHANGED
@@ -25,6 +25,7 @@ jeweler = Jeweler::Tasks.new do |gem|
25
25
  %w[config.yaml spec/**/* .gitignore .rspec .rvmrc .document .rbenv-version].each do |fp|
26
26
  gem.files.exclude fp
27
27
  end
28
+ gem.add_runtime_dependency 'addressable', '~> 2.3.2'
28
29
  gem.add_runtime_dependency 'collins_client', '~> 0.2.10'
29
30
  gem.add_runtime_dependency 'hipchat', '~> 0.7.0'
30
31
  gem.add_runtime_dependency 'mail', '~> 2.4.4'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -0,0 +1,72 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "collins_notify"
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Blake Matheny"]
12
+ s.date = "2013-01-29"
13
+ s.description = "Send notifications via hipchat, IRC and email"
14
+ s.email = "bmatheny@tumblr.com"
15
+ s.executables = ["collins-notify"]
16
+ s.files = [
17
+ "Gemfile",
18
+ "README.rdoc",
19
+ "Rakefile",
20
+ "VERSION",
21
+ "bin/collins-notify",
22
+ "collins_notify.gemspec",
23
+ "lib/collins_notify.rb",
24
+ "lib/collins_notify/adapter/email.rb",
25
+ "lib/collins_notify/adapter/helper/carried-pigeon.rb",
26
+ "lib/collins_notify/adapter/hipchat.rb",
27
+ "lib/collins_notify/adapter/irc.rb",
28
+ "lib/collins_notify/application.rb",
29
+ "lib/collins_notify/command_runner.rb",
30
+ "lib/collins_notify/configuration.rb",
31
+ "lib/collins_notify/configuration_mixin.rb",
32
+ "lib/collins_notify/errors.rb",
33
+ "lib/collins_notify/notifier.rb",
34
+ "lib/collins_notify/options.rb",
35
+ "lib/collins_notify/version.rb",
36
+ "sample_config.yaml",
37
+ "templates/default_email.erb",
38
+ "templates/default_email.html.erb",
39
+ "templates/default_hipchat.erb",
40
+ "templates/default_irc.erb"
41
+ ]
42
+ s.homepage = "https://github.com/tumblr/collins/tree/master/support/ruby/collins-notify"
43
+ s.licenses = ["MIT"]
44
+ s.require_paths = ["lib"]
45
+ s.rubygems_version = "1.8.23"
46
+ s.summary = "Notifications for Collins"
47
+
48
+ if s.respond_to? :specification_version then
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
52
+ s.add_runtime_dependency(%q<addressable>, ["~> 2.3.2"])
53
+ s.add_runtime_dependency(%q<collins_client>, ["~> 0.2.10"])
54
+ s.add_runtime_dependency(%q<hipchat>, ["~> 0.7.0"])
55
+ s.add_runtime_dependency(%q<mail>, ["~> 2.4.4"])
56
+ s.add_runtime_dependency(%q<nokogiri>, ["~> 1.5.2"])
57
+ else
58
+ s.add_dependency(%q<addressable>, ["~> 2.3.2"])
59
+ s.add_dependency(%q<collins_client>, ["~> 0.2.10"])
60
+ s.add_dependency(%q<hipchat>, ["~> 0.7.0"])
61
+ s.add_dependency(%q<mail>, ["~> 2.4.4"])
62
+ s.add_dependency(%q<nokogiri>, ["~> 1.5.2"])
63
+ end
64
+ else
65
+ s.add_dependency(%q<addressable>, ["~> 2.3.2"])
66
+ s.add_dependency(%q<collins_client>, ["~> 0.2.10"])
67
+ s.add_dependency(%q<hipchat>, ["~> 0.7.0"])
68
+ s.add_dependency(%q<mail>, ["~> 2.4.4"])
69
+ s.add_dependency(%q<nokogiri>, ["~> 1.5.2"])
70
+ end
71
+ end
72
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: collins_notify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,6 +11,22 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-01-29 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: addressable
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.3.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 2.3.2
14
30
  - !ruby/object:Gem::Dependency
15
31
  name: collins_client
16
32
  requirement: !ruby/object:Gem::Requirement
@@ -87,6 +103,7 @@ files:
87
103
  - Rakefile
88
104
  - VERSION
89
105
  - bin/collins-notify
106
+ - collins_notify.gemspec
90
107
  - lib/collins_notify.rb
91
108
  - lib/collins_notify/adapter/email.rb
92
109
  - lib/collins_notify/adapter/helper/carried-pigeon.rb
@@ -120,7 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
120
137
  version: '0'
121
138
  segments:
122
139
  - 0
123
- hash: -1912986275392860766
140
+ hash: -4369586567197848766
124
141
  required_rubygems_version: !ruby/object:Gem::Requirement
125
142
  none: false
126
143
  requirements: