songkickr 0.2.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. data/Gemfile +6 -2
  2. data/Gemfile.lock +32 -10
  3. data/README.rdoc +7 -7
  4. data/Rakefile +1 -1
  5. data/VERSION +1 -1
  6. data/bin/autospec +16 -0
  7. data/bin/convert_to_should_syntax +16 -0
  8. data/bin/guard +16 -0
  9. data/bin/htmldiff +16 -0
  10. data/bin/httparty +16 -0
  11. data/bin/jeweler +16 -0
  12. data/bin/ldiff +16 -0
  13. data/bin/rake +16 -0
  14. data/bin/rake2thor +16 -0
  15. data/bin/rg +16 -0
  16. data/bin/ri +16 -0
  17. data/bin/rspec +16 -0
  18. data/bin/thor +16 -0
  19. data/doc/APIError.html +241 -0
  20. data/doc/APIKeyNotSet.html +164 -175
  21. data/doc/LICENSE.html +109 -109
  22. data/doc/README_rdoc.html +120 -117
  23. data/doc/ResourceNotFound.html +203 -0
  24. data/doc/Songkickr/Artist.html +210 -237
  25. data/doc/Songkickr/ArtistResult.html +228 -254
  26. data/doc/Songkickr/ConcertSetlistResult.html +205 -223
  27. data/doc/Songkickr/Event.html +344 -409
  28. data/doc/Songkickr/EventResult.html +226 -252
  29. data/doc/Songkickr/Location.html +210 -237
  30. data/doc/Songkickr/LocationResult.html +229 -255
  31. data/doc/Songkickr/Performance.html +222 -253
  32. data/doc/Songkickr/Remote.html +630 -481
  33. data/doc/Songkickr/Setlist.html +258 -296
  34. data/doc/Songkickr/SetlistItem.html +187 -206
  35. data/doc/Songkickr/Venue.html +205 -232
  36. data/doc/Songkickr.html +204 -271
  37. data/doc/created.rid +16 -16
  38. data/doc/images/add.png +0 -0
  39. data/doc/images/delete.png +0 -0
  40. data/doc/images/tag_blue.png +0 -0
  41. data/doc/images/transparent.png +0 -0
  42. data/doc/index.html +93 -127
  43. data/doc/js/darkfish.js +99 -62
  44. data/doc/js/jquery.js +15 -29
  45. data/doc/js/navigation.js +142 -0
  46. data/doc/js/search.js +94 -0
  47. data/doc/js/search_index.js +1 -0
  48. data/doc/js/searcher.js +228 -0
  49. data/doc/rdoc.css +119 -339
  50. data/doc/table_of_contents.html +185 -0
  51. data/lib/songkickr/artist.rb +3 -3
  52. data/lib/songkickr/remote.rb +36 -13
  53. data/lib/songkickr.rb +16 -2
  54. data/songkickr.gemspec +121 -4
  55. data/test/fixtures/vcr/invalid_api_key.yml +63 -0
  56. data/test/fixtures/vcr/invalid_event_id.yml +33 -0
  57. data/test/fixtures/vcr/invalid_user.yml +32 -0
  58. data/test/fixtures/vcr/invalid_venue_id.yml +33 -0
  59. data/test/fixtures/vcr/valid_event.yml +52 -0
  60. data/test/fixtures/vcr/valid_user.yml +71 -0
  61. data/test/fixtures/vcr/valid_venue.yml +53 -0
  62. data/test/helper.rb +2 -2
  63. data/test/songkickr/test_remote.rb +68 -24
  64. data/test/vcr_helper.rb +7 -0
  65. data/test.rb +2 -2
  66. metadata +626 -40
data/Gemfile CHANGED
@@ -4,6 +4,10 @@ source "http://rubygems.org"
4
4
  gemspec
5
5
 
6
6
  group :development, :test do
7
- gem 'redgreen', '>= 1.2.2'
8
7
  gem 'crack'
9
- end
8
+ gem 'httparty'
9
+ gem 'test-unit'
10
+ gem 'rake'
11
+ gem 'jeweler'
12
+ gem 'vcr'
13
+ end
data/Gemfile.lock CHANGED
@@ -1,25 +1,42 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- songkickr (0.2.0)
5
- httparty
4
+ songkickr (0.2.2)
5
+ songkickr
6
6
 
7
7
  GEM
8
8
  remote: http://rubygems.org/
9
9
  specs:
10
+ activesupport (3.2.8)
11
+ i18n (~> 0.6)
12
+ multi_json (~> 1.0)
10
13
  crack (0.3.1)
11
14
  fakeweb (1.3.0)
12
- httparty (0.8.1)
13
- multi_json
15
+ git (1.2.5)
16
+ httparty (0.8.3)
17
+ multi_json (~> 1.0)
14
18
  multi_xml
15
- multi_json (1.1.0)
16
- multi_xml (0.4.1)
19
+ i18n (0.6.0)
20
+ jeweler (1.8.4)
21
+ bundler (~> 1.0)
22
+ git (>= 1.2.5)
23
+ rake
24
+ rdoc
25
+ json (1.6.5)
26
+ multi_json (1.3.6)
27
+ multi_xml (0.5.1)
28
+ rake (0.9.2.2)
29
+ rdoc (3.12)
30
+ json (~> 1.4)
17
31
  redgreen (1.2.2)
18
- shoulda (3.0.0)
19
- shoulda-context (~> 1.0.0)
20
- shoulda-matchers (~> 1.0.0)
32
+ shoulda (3.1.1)
33
+ shoulda-context (~> 1.0)
34
+ shoulda-matchers (~> 1.2)
21
35
  shoulda-context (1.0.0)
22
- shoulda-matchers (1.0.0)
36
+ shoulda-matchers (1.2.0)
37
+ activesupport (>= 3.0.0)
38
+ test-unit (2.5.1)
39
+ vcr (2.2.4)
23
40
 
24
41
  PLATFORMS
25
42
  ruby
@@ -27,6 +44,11 @@ PLATFORMS
27
44
  DEPENDENCIES
28
45
  crack
29
46
  fakeweb (>= 1.3.0)
47
+ httparty
48
+ jeweler
49
+ rake
30
50
  redgreen (>= 1.2.2)
31
51
  shoulda (>= 2.11.0)
32
52
  songkickr!
53
+ test-unit
54
+ vcr
data/README.rdoc CHANGED
@@ -5,11 +5,11 @@ A Ruby wrapper around the Songkick API. Visit www.songkick.com/developer for doc
5
5
  = Install Instructions
6
6
 
7
7
  gem install songkickr
8
-
8
+
9
9
  or if your environment requires
10
-
10
+
11
11
  sudo gem install songkickr
12
-
12
+
13
13
  = Usage Instructions
14
14
 
15
15
  require 'songkickr'
@@ -17,8 +17,8 @@ or if your environment requires
17
17
 
18
18
  Then call events, users_events(username), or concert_setlists(event_id)
19
19
 
20
- results = remote.events(:artist_name => 'Iron Maiden')
21
- results = remote.events(:artist_name => 'As I Lay Dying')
20
+ results = remote.events(:query => 'Iron Maiden')
21
+ results = remote.events(:query => 'As I Lay Dying')
22
22
 
23
23
  results = remote.users_events('jrmehle')
24
24
 
@@ -27,7 +27,7 @@ Then call events, users_events(username), or concert_setlists(event_id)
27
27
 
28
28
 
29
29
  == Note on Patches/Pull Requests
30
-
30
+
31
31
  * Fork the project.
32
32
  * Make your feature addition or bug fix.
33
33
  * Add tests for it. This is important so I don't break it in a
@@ -44,5 +44,5 @@ Copyright (c) 2010-2011 Jared Mehle. See LICENSE for details.
44
44
 
45
45
  Thanks to Akshay Dodeja and Tomasz Stachewicz for submitting code and pull requests.
46
46
 
47
- A special thank you to Jon Nunemaker for the httparty which is used extensively within this
47
+ A special thank you to Jon Nunemaker for the httparty which is used extensively within this
48
48
  gem and for the twitter gem as inspiration.
data/Rakefile CHANGED
@@ -42,7 +42,7 @@ end
42
42
 
43
43
  task :default => :test
44
44
 
45
- require 'rake/rdoctask'
45
+ require 'rdoc/task'
46
46
  Rake::RDocTask.new do |rdoc|
47
47
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
48
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.3.0
data/bin/autospec ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'autospec' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rspec-core', 'autospec')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'convert_to_should_syntax' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('shoulda-context', 'convert_to_should_syntax')
data/bin/guard ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'guard' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('guard', 'guard')
data/bin/htmldiff ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'htmldiff' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('diff-lcs', 'htmldiff')
data/bin/httparty ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'httparty' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('httparty', 'httparty')
data/bin/jeweler ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'jeweler' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('jeweler', 'jeweler')
data/bin/ldiff ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ldiff' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('diff-lcs', 'ldiff')
data/bin/rake ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
data/bin/rake2thor ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake2thor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('thor', 'rake2thor')
data/bin/rg ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rg' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('redgreen', 'rg')
data/bin/ri ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'ri' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rdoc', 'ri')
data/bin/rspec ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rspec' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rspec-core', 'rspec')
data/bin/thor ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'thor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('thor', 'thor')
data/doc/APIError.html ADDED
@@ -0,0 +1,241 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class APIError - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/songkickr.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">StandardError
63
+
64
+ </nav>
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <nav id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+ <li><a href="#method-c-new">::new</a>
74
+
75
+ <li><a href="#method-i-to_s">#to_s</a>
76
+
77
+ </ul>
78
+ </nav>
79
+
80
+ </div>
81
+
82
+ <div id="project-metadata">
83
+ <nav id="fileindex-section" class="section project-section">
84
+ <h3 class="section-header">Pages</h3>
85
+
86
+ <ul>
87
+
88
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
89
+
90
+ <li class="file"><a href="./README_rdoc.html">README</a>
91
+
92
+ </ul>
93
+ </nav>
94
+
95
+ <nav id="classindex-section" class="section project-section">
96
+ <h3 class="section-header">Class and Module Index</h3>
97
+
98
+ <ul class="link-list">
99
+
100
+ <li><a href="./Songkickr.html">Songkickr</a>
101
+
102
+ <li><a href="./Songkickr/Artist.html">Songkickr::Artist</a>
103
+
104
+ <li><a href="./Songkickr/ArtistResult.html">Songkickr::ArtistResult</a>
105
+
106
+ <li><a href="./Songkickr/ConcertSetlistResult.html">Songkickr::ConcertSetlistResult</a>
107
+
108
+ <li><a href="./Songkickr/Event.html">Songkickr::Event</a>
109
+
110
+ <li><a href="./Songkickr/EventResult.html">Songkickr::EventResult</a>
111
+
112
+ <li><a href="./Songkickr/Location.html">Songkickr::Location</a>
113
+
114
+ <li><a href="./Songkickr/LocationResult.html">Songkickr::LocationResult</a>
115
+
116
+ <li><a href="./Songkickr/Performance.html">Songkickr::Performance</a>
117
+
118
+ <li><a href="./Songkickr/Remote.html">Songkickr::Remote</a>
119
+
120
+ <li><a href="./Songkickr/Setlist.html">Songkickr::Setlist</a>
121
+
122
+ <li><a href="./Songkickr/SetlistItem.html">Songkickr::SetlistItem</a>
123
+
124
+ <li><a href="./Songkickr/Venue.html">Songkickr::Venue</a>
125
+
126
+ <li><a href="./APIError.html">APIError</a>
127
+
128
+ <li><a href="./APIKeyNotSet.html">APIKeyNotSet</a>
129
+
130
+ <li><a href="./ResourceNotFound.html">ResourceNotFound</a>
131
+
132
+ </ul>
133
+ </nav>
134
+
135
+ </div>
136
+ </nav>
137
+
138
+ <div id="documentation">
139
+ <h1 class="class">class APIError</h1>
140
+
141
+ <div id="description" class="description">
142
+
143
+ </div><!-- description -->
144
+
145
+
146
+
147
+
148
+ <section id="5Buntitled-5D" class="documentation-section">
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+ <!-- Methods -->
158
+
159
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
160
+ <h3 class="section-header">Public Class Methods</h3>
161
+
162
+
163
+ <div id="method-c-new" class="method-detail ">
164
+
165
+ <div class="method-heading">
166
+ <span class="method-name">new</span><span
167
+ class="method-args">(message = "API Error")</span>
168
+ <span class="method-click-advice">click to toggle source</span>
169
+ </div>
170
+
171
+
172
+ <div class="method-description">
173
+
174
+
175
+
176
+
177
+
178
+ <div class="method-source-code" id="new-source">
179
+ <pre><span class="ruby-comment"># File lib/songkickr.rb, line 28</span>
180
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">message</span> = <span class="ruby-string">&quot;API Error&quot;</span>)
181
+ <span class="ruby-ivar">@message</span> = <span class="ruby-identifier">message</span>
182
+ <span class="ruby-keyword">end</span></pre>
183
+ </div><!-- new-source -->
184
+
185
+ </div>
186
+
187
+
188
+
189
+
190
+ </div><!-- new-method -->
191
+
192
+
193
+ </section><!-- public-class-method-details -->
194
+
195
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
196
+ <h3 class="section-header">Public Instance Methods</h3>
197
+
198
+
199
+ <div id="method-i-to_s" class="method-detail ">
200
+
201
+ <div class="method-heading">
202
+ <span class="method-name">to_s</span><span
203
+ class="method-args">()</span>
204
+ <span class="method-click-advice">click to toggle source</span>
205
+ </div>
206
+
207
+
208
+ <div class="method-description">
209
+
210
+
211
+
212
+
213
+
214
+ <div class="method-source-code" id="to_s-source">
215
+ <pre><span class="ruby-comment"># File lib/songkickr.rb, line 32</span>
216
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">to_s</span>
217
+ <span class="ruby-ivar">@message</span>
218
+ <span class="ruby-keyword">end</span></pre>
219
+ </div><!-- to_s-source -->
220
+
221
+ </div>
222
+
223
+
224
+
225
+
226
+ </div><!-- to_s-method -->
227
+
228
+
229
+ </section><!-- public-instance-method-details -->
230
+
231
+ </section><!-- 5Buntitled-5D -->
232
+
233
+ </div><!-- documentation -->
234
+
235
+
236
+ <footer id="validator-badges">
237
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
238
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
239
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
240
+ </footer>
241
+