carrier-pigeon 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.org ADDED
@@ -0,0 +1,8 @@
1
+ * Usage
2
+ : require 'carrier-pigeon'
3
+ :
4
+ : # In the open
5
+ : CarrierPigeon.send({:uri => "irc://nick:password@irc.domain.com:6667/#channel", :message => "cooooo, coo coo"})
6
+ :
7
+ : # SSL
8
+ : CarrierPigeon.send({:uri => "irc://nick:password@irc.domain.com:6667/#channel", :message => "coo, secret plan", :ssl => true})
@@ -16,6 +16,8 @@ Gem::Specification.new do |s|
16
16
 
17
17
  s.rubyforge_project = "carrier-pigeon"
18
18
 
19
+ s.add_dependency("addressable")
20
+
19
21
  s.files = `git ls-files`.split("\n")
20
22
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
23
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -1,5 +1,5 @@
1
1
  module Carrier
2
2
  module Pigeon
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: carrier-pigeon
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Sean Porter
@@ -12,8 +12,18 @@ cert_chain: []
12
12
 
13
13
  date: 2011-06-14 00:00:00 +09:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: addressable
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ type: :runtime
26
+ version_requirements: *id001
17
27
  description: The simplest library to say something on IRC
18
28
  email:
19
29
  - portertech@gmail.com
@@ -26,6 +36,7 @@ extra_rdoc_files: []
26
36
  files:
27
37
  - .gitignore
28
38
  - Gemfile
39
+ - README.org
29
40
  - Rakefile
30
41
  - carrier-pigeon.gemspec
31
42
  - lib/carrier-pigeon.rb