google_chat 0.0.2 → 0.0.3
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/Manifest +1 -1
- data/Rakefile +2 -2
- data/google_chat.gemspec +3 -3
- metadata +5 -5
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -2,13 +2,13 @@ require 'rubygems'
|
|
|
2
2
|
require 'rake'
|
|
3
3
|
require 'echoe'
|
|
4
4
|
|
|
5
|
-
Echoe.new('google_chat', '0.0.
|
|
5
|
+
Echoe.new('google_chat', '0.0.3') do |p|
|
|
6
6
|
p.description = "gem that makes it easy to send IM using google chat"
|
|
7
7
|
p.url = "http://github.com/anujluthra/google-chat"
|
|
8
8
|
p.author = "Anuj Luthra"
|
|
9
9
|
p.email = "anujluthra @nospam@ gmail.com"
|
|
10
10
|
p.ignore_pattern = ["tmp/*", "script/*"]
|
|
11
|
-
p.
|
|
11
|
+
p.runtime_dependencies = ["xmpp4r"]
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
|
data/google_chat.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{google_chat}
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.3"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Anuj Luthra"]
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.description = %q{gem that makes it easy to send IM using google chat}
|
|
11
11
|
s.email = %q{anujluthra @nospam@ gmail.com}
|
|
12
12
|
s.extra_rdoc_files = ["README", "lib/google_chat.rb"]
|
|
13
|
-
s.files = ["README", "Rakefile", "lib/google_chat.rb", "
|
|
13
|
+
s.files = ["Manifest", "README", "Rakefile", "lib/google_chat.rb", "google_chat.gemspec"]
|
|
14
14
|
s.homepage = %q{http://github.com/anujluthra/google-chat}
|
|
15
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Google_chat", "--main", "README"]
|
|
16
16
|
s.require_paths = ["lib"]
|
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
s.specification_version = 3
|
|
24
24
|
|
|
25
25
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
|
-
s.
|
|
26
|
+
s.add_runtime_dependency(%q<xmpp4r>, [">= 0"])
|
|
27
27
|
else
|
|
28
28
|
s.add_dependency(%q<xmpp4r>, [">= 0"])
|
|
29
29
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_chat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Anuj Luthra
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
segments:
|
|
31
31
|
- 0
|
|
32
32
|
version: "0"
|
|
33
|
-
type: :
|
|
33
|
+
type: :runtime
|
|
34
34
|
version_requirements: *id001
|
|
35
35
|
description: gem that makes it easy to send IM using google chat
|
|
36
36
|
email: anujluthra @nospam@ gmail.com
|
|
@@ -42,10 +42,10 @@ extra_rdoc_files:
|
|
|
42
42
|
- README
|
|
43
43
|
- lib/google_chat.rb
|
|
44
44
|
files:
|
|
45
|
+
- Manifest
|
|
45
46
|
- README
|
|
46
47
|
- Rakefile
|
|
47
48
|
- lib/google_chat.rb
|
|
48
|
-
- Manifest
|
|
49
49
|
- google_chat.gemspec
|
|
50
50
|
has_rdoc: true
|
|
51
51
|
homepage: http://github.com/anujluthra/google-chat
|