ruby_skynet 0.1.0 → 0.1.1

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/Gemfile CHANGED
@@ -8,6 +8,7 @@ gem "semantic_logger"
8
8
  gem "resilient_socket"
9
9
  # For looking up Service entries in Doozer
10
10
  gem "multi_json"
11
+ gem "ruby_protobuf"
11
12
  # Wire format when communicating with services
12
13
  gem "bson"
13
14
  gem "bson_ext", :platform => :ruby
data/Gemfile.lock CHANGED
@@ -4,46 +4,32 @@ GEM
4
4
  activesupport (3.2.8)
5
5
  i18n (~> 0.6)
6
6
  multi_json (~> 1.0)
7
- beefcake (0.3.7)
8
- bouncy-castle-java (1.5.0146.1)
9
7
  bson (1.7.0)
10
- bson (1.7.0-java)
11
8
  bson_ext (1.7.0)
12
9
  bson (~> 1.7.0)
13
- eventmachine (1.0.0)
14
- eventmachine (1.0.0-java)
15
- fraggle (4.0.1)
16
- beefcake (~> 0.3)
17
- eventmachine
18
- gene_pool (1.3.0)
19
10
  i18n (0.6.1)
20
- jruby-openssl (0.7.7)
21
- bouncy-castle-java (>= 1.5.0146.1)
22
11
  multi_json (1.3.6)
23
- rake (0.9.2.2)
24
- resilient_socket (0.0.2)
12
+ resilient_socket (0.1.0)
25
13
  semantic_logger
26
- semantic_logger (0.6.2)
14
+ ruby_protobuf (0.4.11)
15
+ semantic_logger (0.7.0)
27
16
  sync_attr
28
- shoulda (3.1.1)
17
+ shoulda (3.3.0)
29
18
  shoulda-context (~> 1.0)
30
- shoulda-matchers (~> 1.2)
19
+ shoulda-matchers (~> 1.4)
31
20
  shoulda-context (1.0.0)
32
- shoulda-matchers (1.3.0)
21
+ shoulda-matchers (1.4.0)
33
22
  activesupport (>= 3.0.0)
34
23
  sync_attr (0.1.1)
35
24
 
36
25
  PLATFORMS
37
- java
38
26
  ruby
39
27
 
40
28
  DEPENDENCIES
41
29
  bson
42
30
  bson_ext
43
- fraggle
44
- gene_pool
45
- jruby-openssl
46
- rake
31
+ multi_json
47
32
  resilient_socket
33
+ ruby_protobuf
48
34
  semantic_logger
49
35
  shoulda
data/README.md CHANGED
@@ -16,7 +16,7 @@ RubySkynet::Client.connect('TutorialService') do |tutorial_service|
16
16
  end
17
17
  ```
18
18
 
19
- For details on installing and running the Tutorial Service:
19
+ For details on installing and running the Tutorial Service: https://github.com/bketelsen/skynet/wiki/Service-Tutorial
20
20
 
21
21
  ### Logging
22
22
 
@@ -38,13 +38,13 @@ end
38
38
 
39
39
  ruby_skynet implements its own doozer client which has been tested against
40
40
  the doozer fork: https://github.com/4ad/doozerd.
41
- The doozer client uses the active ruby_protobuf project for marshaling data
42
- for communicating with doozer
41
+ The doozer client uses the active [ruby_protobuf](https://github.com/macks/ruby-protobuf)
42
+ project for marshaling data for communicating with doozer
43
43
 
44
44
  ### Dependencies
45
45
 
46
46
  - Ruby MRI 1.8.7 (or above), Ruby 1.9.3, Or JRuby 1.6.3 (or above)
47
- - [SemanticLogger](http://github.com/ClarityServices/semantic-logger)
47
+ - [SemanticLogger](http://github.com/ClarityServices/semantic_logger)
48
48
  - [ResilientSocket](http://github.com/ClarityServices/ruby_skynet)
49
49
  - [ruby_protobuf](https://github.com/macks/ruby-protobuf)
50
50
  - [multi_json](https://github.com/intridea/multi_json)
@@ -64,15 +64,15 @@ for communicating with doozer
64
64
  Development
65
65
  -----------
66
66
 
67
- Want to contribute to Resilient Socket?
67
+ Want to contribute to Ruby Skynet?
68
68
 
69
69
  First clone the repo and run the tests:
70
70
 
71
71
  git clone git://github.com/ClarityServices/ruby_skynet.git
72
72
  cd ruby_skynet
73
- jruby -S rake test
73
+ ruby -S rake test
74
74
 
75
- Feel free to ping the mailing list with any issues and we'll try to resolve it.
75
+ Feel free to submit an issue and we'll try to resolve it.
76
76
 
77
77
  Contributing
78
78
  ------------
@@ -90,8 +90,7 @@ Meta
90
90
 
91
91
  * Code: `git clone git://github.com/ClarityServices/ruby_skynet.git`
92
92
  * Home: <https://github.com/ClarityServices/ruby_skynet>
93
- * Docs: TODO <http://ClarityServices.github.com/ruby_skynet/>
94
- * Bugs: <http://github.com/reidmorrison/ruby_skynet/issues>
93
+ * Bugs: <http://github.com/ClarityServices/ruby_skynet/issues>
95
94
  * Gems: <http://rubygems.org/gems/ruby_skynet>
96
95
 
97
96
  This project uses [Semantic Versioning](http://semver.org/).
data/Rakefile CHANGED
@@ -25,6 +25,7 @@ task :gem do |t|
25
25
  spec.add_dependency 'resilient_socket'
26
26
  spec.add_dependency 'multi_json'
27
27
  spec.add_dependency 'bson'
28
+ spec.add_dependency 'ruby_protobuf'
28
29
  end
29
30
  Gem::Builder.new(gemspec).build
30
31
  end
@@ -1,3 +1,3 @@
1
1
  module RubySkynet #:nodoc
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -1 +1 @@
1
- platform.active=Ruby
1
+ platform.active=Ruby_0
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project-private xmlns="http://www.netbeans.org/ns/project-private/1">
3
+ <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>
4
+ </project-private>
@@ -1,4 +1,4 @@
1
- clean=Remove any temporary products.
2
- clobber=Remove any generated file.
3
- gem=Build gem
4
- test=Run Test Suite
1
+ clean=
2
+ clobber=
3
+ gem=
4
+ test=
Binary file
data/test.log CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_skynet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-08 00:00:00.000000000 Z
12
+ date: 2012-10-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: semantic_logger
@@ -75,6 +75,22 @@ dependencies:
75
75
  - - ! '>='
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: ruby_protobuf
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
78
94
  description: Ruby Client for invoking Skynet services
79
95
  email:
80
96
  - reidmo@gmail.com
@@ -94,12 +110,13 @@ files:
94
110
  - LICENSE.txt
95
111
  - nbproject/private/config.properties
96
112
  - nbproject/private/private.properties
113
+ - nbproject/private/private.xml
97
114
  - nbproject/private/rake-d.txt
98
115
  - nbproject/project.properties
99
116
  - nbproject/project.xml
100
117
  - Rakefile
101
118
  - README.md
102
- - skynet-0.1.0.gem
119
+ - ruby_skynet-0.1.0.gem
103
120
  - test/doozer_client_test.rb
104
121
  - test/ruby_skynet_client_test.rb
105
122
  - test/simple_server.rb
@@ -116,6 +133,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
133
  - - ! '>='
117
134
  - !ruby/object:Gem::Version
118
135
  version: '0'
136
+ segments:
137
+ - 0
138
+ hash: 1075476065328541385
119
139
  required_rubygems_version: !ruby/object:Gem::Requirement
120
140
  none: false
121
141
  requirements:
data/skynet-0.1.0.gem DELETED
Binary file