cruisestatus 1.1.0 → 1.1.2

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 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.0
1
+ 1.1.2
data/cruisestatus.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cruisestatus}
8
- s.version = "1.1.0"
8
+ s.version = "1.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Toby Tripp"]
data/lib/cruisestatus.rb CHANGED
@@ -14,9 +14,10 @@ require "open-uri"
14
14
  #
15
15
  class CruiseStatus
16
16
 
17
- # feed_url:: URL pointing to a cruise.rb RSS feed.
18
- # Example: http://my.cruise.com/projects.rss
19
- # or: http://my.cruise.com/projects/myproject.rss
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cruisestatus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Tripp