julien51-ruby_bosh 0.5.5 → 0.5.6

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/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
data/TODO ADDED
@@ -0,0 +1,2 @@
1
+ write basic tests
2
+
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 5
2
+ :patch: 6
3
3
  :major: 0
4
4
  :minor: 5
@@ -0,0 +1,5 @@
1
+ $:.push(File.join(File.dirname(__FILE__), %w[.. .. rspec]))
2
+
3
+ Autotest.add_discovery do
4
+ "rspec"
5
+ end
data/lib/ruby_bosh.rb CHANGED
@@ -48,6 +48,11 @@ class RubyBOSH
48
48
  new(*args).connect
49
49
  end
50
50
 
51
+ def attach(sid, rid)
52
+ @sid = sid
53
+ @rid = rid
54
+ end
55
+
51
56
  def connect
52
57
  initialize_bosh_session
53
58
  if send_auth_request
data/ruby_bosh.gemspec ADDED
@@ -0,0 +1,64 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
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 = %q{ruby_bosh}
8
+ s.version = "0.5.6"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Pradeep Elankumaran"]
12
+ s.date = %q{2009-08-25}
13
+ s.description = %q{TODO}
14
+ s.email = %q{pradeep@intridea.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "LICENSE",
22
+ "README",
23
+ "Rakefile",
24
+ "TODO",
25
+ "VERSION.yml",
26
+ "autotest/discover.rb",
27
+ "lib/ruby_bosh.rb",
28
+ "ruby_bosh.gemspec",
29
+ "spec/ruby_bosh_spec.rb",
30
+ "spec/spec_helper.rb"
31
+ ]
32
+ s.has_rdoc = true
33
+ s.homepage = %q{http://github.com/skyfallsin/ruby_bosh}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.1}
37
+ s.summary = %q{A BOSH session pre-initializer for Ruby web applications}
38
+ s.test_files = [
39
+ "spec/ruby_bosh_spec.rb",
40
+ "spec/spec_helper.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
+ s.specification_version = 2
46
+
47
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
48
+ s.add_runtime_dependency(%q<builder>, [">= 0"])
49
+ s.add_runtime_dependency(%q<rest-client>, [">= 0"])
50
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
51
+ s.add_runtime_dependency(%q<SystemTimer>, [">= 0"])
52
+ else
53
+ s.add_dependency(%q<builder>, [">= 0"])
54
+ s.add_dependency(%q<rest-client>, [">= 0"])
55
+ s.add_dependency(%q<hpricot>, [">= 0"])
56
+ s.add_dependency(%q<SystemTimer>, [">= 0"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<builder>, [">= 0"])
60
+ s.add_dependency(%q<rest-client>, [">= 0"])
61
+ s.add_dependency(%q<hpricot>, [">= 0"])
62
+ s.add_dependency(%q<SystemTimer>, [">= 0"])
63
+ end
64
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: julien51-ruby_bosh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pradeep Elankumaran
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-03 00:00:00 -07:00
12
+ date: 2009-08-25 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -62,13 +62,17 @@ extra_rdoc_files:
62
62
  - LICENSE
63
63
  - README
64
64
  files:
65
+ - .gitignore
65
66
  - LICENSE
67
+ - README
66
68
  - Rakefile
69
+ - TODO
67
70
  - VERSION.yml
71
+ - autotest/discover.rb
68
72
  - lib/ruby_bosh.rb
73
+ - ruby_bosh.gemspec
69
74
  - spec/ruby_bosh_spec.rb
70
75
  - spec/spec_helper.rb
71
- - README
72
76
  has_rdoc: true
73
77
  homepage: http://github.com/skyfallsin/ruby_bosh
74
78
  licenses: