romp 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/README.rdoc +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/romp.gemspec +50 -0
- metadata +5 -4
data/README.rdoc
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
= romp
|
|
2
2
|
|
|
3
3
|
Romp is a lightweight {Streaming Text Oriented Messaging Protocol}[http://stomp.codehaus.org/Protocol]
|
|
4
|
-
for Ruby. Stomp is a text-based wire format that lets clients communicate through a
|
|
4
|
+
client for Ruby. Stomp is a text-based wire format that lets clients communicate through a
|
|
5
5
|
variety Stomp message brokers, providing interoperable, cross-language messaging.
|
|
6
6
|
|
|
7
7
|
== Getting started
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ begin
|
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "romp"
|
|
8
8
|
gem.summary = %Q{A Stomp client library for Ruby}
|
|
9
|
-
gem.description = %Q{Romp is a lightweight
|
|
9
|
+
gem.description = %Q{Romp is a lightweight Stomp client for Ruby}
|
|
10
10
|
gem.email = "git@justinbalthrop.com"
|
|
11
11
|
gem.homepage = "http://github.com/ninjudd/romp"
|
|
12
12
|
gem.authors = ["ninjudd"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/romp.gemspec
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{romp}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["ninjudd"]
|
|
12
|
+
s.date = %q{2010-10-07}
|
|
13
|
+
s.description = %q{Romp is a lightweight Stomp client for Ruby}
|
|
14
|
+
s.email = %q{git@justinbalthrop.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/romp.rb",
|
|
26
|
+
"romp.gemspec",
|
|
27
|
+
"test/helper.rb",
|
|
28
|
+
"test/test_romp.rb"
|
|
29
|
+
]
|
|
30
|
+
s.homepage = %q{http://github.com/ninjudd/romp}
|
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = %q{1.3.7}
|
|
34
|
+
s.summary = %q{A Stomp client library for Ruby}
|
|
35
|
+
s.test_files = [
|
|
36
|
+
"test/helper.rb",
|
|
37
|
+
"test/test_romp.rb"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
if s.respond_to? :specification_version then
|
|
41
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
+
s.specification_version = 3
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
else
|
|
46
|
+
end
|
|
47
|
+
else
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: romp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- ninjudd
|
|
@@ -19,7 +19,7 @@ date: 2010-10-07 00:00:00 -07:00
|
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|
|
22
|
-
description: Romp is a lightweight
|
|
22
|
+
description: Romp is a lightweight Stomp client for Ruby
|
|
23
23
|
email: git@justinbalthrop.com
|
|
24
24
|
executables: []
|
|
25
25
|
|
|
@@ -35,6 +35,7 @@ files:
|
|
|
35
35
|
- Rakefile
|
|
36
36
|
- VERSION
|
|
37
37
|
- lib/romp.rb
|
|
38
|
+
- romp.gemspec
|
|
38
39
|
- test/helper.rb
|
|
39
40
|
- test/test_romp.rb
|
|
40
41
|
has_rdoc: true
|