broham 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +23 -6
- data/README.rdoc +25 -4
- data/README.textile +17 -0
- data/VERSION +1 -1
- data/broham.gemspec +4 -2
- metadata +4 -2
data/.gitignore
CHANGED
@@ -1,21 +1,38 @@
|
|
1
|
-
##
|
1
|
+
## OS
|
2
2
|
.DS_Store
|
3
|
+
Icon?
|
4
|
+
nohup.out
|
3
5
|
|
4
|
-
##
|
6
|
+
## EDITORS
|
5
7
|
*.tmproj
|
6
8
|
tmtags
|
7
|
-
|
8
|
-
## EMACS
|
9
9
|
*~
|
10
10
|
\#*
|
11
11
|
.\#*
|
12
|
-
|
13
|
-
## VIM
|
14
12
|
*.swp
|
13
|
+
REVISION
|
14
|
+
TAGS*
|
15
|
+
*_flymake.*
|
16
|
+
.project
|
17
|
+
.settings
|
18
|
+
|
19
|
+
## COMPILED
|
20
|
+
a.out
|
21
|
+
*.o
|
22
|
+
*.pyc
|
23
|
+
*.so
|
24
|
+
|
25
|
+
## OTHER SCM
|
26
|
+
.bzr
|
27
|
+
.hg
|
28
|
+
.svn
|
15
29
|
|
16
30
|
## PROJECT::GENERAL
|
17
31
|
coverage
|
18
32
|
rdoc
|
33
|
+
doc
|
19
34
|
pkg
|
35
|
+
.yardoc
|
36
|
+
*private*
|
20
37
|
|
21
38
|
## PROJECT::SPECIFIC
|
data/README.rdoc
CHANGED
@@ -1,8 +1,29 @@
|
|
1
|
-
|
1
|
+
h2. Broham: A simple, global, highly-available, none-too-bright service registry. Broham always knows where his bros are, bro.
|
2
2
|
|
3
|
-
|
3
|
+
Bro! Broham always knows where his bros are, bro. Using broham, a newly-created
|
4
|
+
cloud machine can annouce its availability for a certain role ("nfs_server" or
|
5
|
+
"db_slave-2"), allowing any other interested nodes to discover its public_ip,
|
6
|
+
private_ip, etc.
|
4
7
|
|
5
|
-
|
8
|
+
Examples:
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
Alternate interface:
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
---------------------
|
17
|
+
|
18
|
+
h3.
|
19
|
+
|
20
|
+
bq. Like Broseph Stalin, you are leading the way to the dictatorship of the
|
21
|
+
broletariate. It is truly revbrolutionary. Like the Bro v. Wade of our
|
22
|
+
generation. You brobliterate the enemy from the very peak of
|
23
|
+
Mt. Brolympus. That's some shit. That's brolific. But that's the kind of bro you
|
24
|
+
are. -- "Zach Caldwell":http://j.mp/amongbros
|
25
|
+
|
26
|
+
h3. Note on Patches/Pull Requests
|
6
27
|
|
7
28
|
* Fork the project.
|
8
29
|
* Make your feature addition or bug fix.
|
@@ -12,6 +33,6 @@ Description goes here.
|
|
12
33
|
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
34
|
* Send me a pull request. Bonus points for topic branches.
|
14
35
|
|
15
|
-
|
36
|
+
h3. Copyright
|
16
37
|
|
17
38
|
Copyright (c) 2010 Philip (flip) Kromer. See LICENSE for details.
|
data/README.textile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= broham
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Philip (flip) Kromer. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/broham.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{broham}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Philip (flip) Kromer"]
|
@@ -14,13 +14,15 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.email = %q{flip@infochimps.org}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
"README.rdoc"
|
17
|
+
"README.rdoc",
|
18
|
+
"README.textile"
|
18
19
|
]
|
19
20
|
s.files = [
|
20
21
|
".document",
|
21
22
|
".gitignore",
|
22
23
|
"LICENSE",
|
23
24
|
"README.rdoc",
|
25
|
+
"README.textile",
|
24
26
|
"Rakefile",
|
25
27
|
"VERSION",
|
26
28
|
"broham.gemspec",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Philip (flip) Kromer
|
@@ -52,11 +52,13 @@ extensions: []
|
|
52
52
|
extra_rdoc_files:
|
53
53
|
- LICENSE
|
54
54
|
- README.rdoc
|
55
|
+
- README.textile
|
55
56
|
files:
|
56
57
|
- .document
|
57
58
|
- .gitignore
|
58
59
|
- LICENSE
|
59
60
|
- README.rdoc
|
61
|
+
- README.textile
|
60
62
|
- Rakefile
|
61
63
|
- VERSION
|
62
64
|
- broham.gemspec
|