cruisestatus 1.1.0 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +5 -0
- data/VERSION +1 -1
- data/cruisestatus.gemspec +1 -1
- data/lib/cruisestatus.rb +4 -3
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -24,6 +24,11 @@ build. Use this to abort check-ins when the build has failed, for example.
|
|
24
24
|
commit by itself I can ignore when I pull)
|
25
25
|
* Send me a pull request.
|
26
26
|
|
27
|
+
== TODO
|
28
|
+
|
29
|
+
* Cruise.java support?
|
30
|
+
* Support for runcoderun.com
|
31
|
+
|
27
32
|
== Copyright
|
28
33
|
|
29
34
|
Copyright (c) 2010 Toby Tripp. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.2
|
data/cruisestatus.gemspec
CHANGED
data/lib/cruisestatus.rb
CHANGED
@@ -14,9 +14,10 @@ require "open-uri"
|
|
14
14
|
#
|
15
15
|
class CruiseStatus
|
16
16
|
|
17
|
-
# feed_url::
|
18
|
-
#
|
19
|
-
#
|
17
|
+
# feed_url::
|
18
|
+
# URL pointing to a cruise.rb RSS feed.
|
19
|
+
# Example: "http://my.cruise.com/projects.rss"
|
20
|
+
# or: "http://my.cruise.com/projects/myproject.rss""
|
20
21
|
#
|
21
22
|
def initialize( feed_url )
|
22
23
|
project_feed = Kernel.open( feed_url ).read
|