ballast 2.2.2 → 2.2.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 903a831f14ad4e705f187cd71ca640cc805f1409
4
- data.tar.gz: 639d3bb3e66fbee14919ddaa32bfb1407fc873f0
3
+ metadata.gz: 2ea230d77a299123ea7c84effeb0901ed7d9b0af
4
+ data.tar.gz: d97349cba268d0eed361ccfde600a6ee2cc030dc
5
5
  SHA512:
6
- metadata.gz: a0a71c1ad8a56c25b65e63e484c8ae7c353e78bb44a50555452ea57cbf410a3ab87557017e85edfef31a5f44abe94c5539a30281bc6e8301b4040b0c46891232
7
- data.tar.gz: 3611b01af30b0a9ce0593095df5ec2ae262f364e64ab4ef81da45c1f95a511f855c2fd4a2403b12c8bd05a8c02cf2f01f82541f12995cc9d0eba3248feb6a680
6
+ metadata.gz: fa92674acef606210c718cf1b13ffb9c2cface9671fd50403133134831ac9fd84044e2cfced9fef4fb95254e3b0ddea84bf04be189db3c4b1bc3cf7d80b6c82b
7
+ data.tar.gz: f357bc5316eb5c84f77882133f35cfca2a2252a79bbfe8c994cb83dbfa4dfd518430574136f88b78c9dc2d9be5940a4b8eeee662ec8178a26081ff147687b1eb
data/.travis-gemfile CHANGED
@@ -8,7 +8,7 @@ source "http://rubygems.org"
8
8
  gemspec
9
9
 
10
10
  # Testing gems
11
- gem "rspec", "~> 3.1"
12
- gem "rake", "~> 10.3"
13
- gem "simplecov", ">= 0.9"
14
- gem "coveralls", ">= 0.7", require: false
11
+ gem "rspec", "~> 3.4"
12
+ gem "rake", "~> 11.0"
13
+ gem "simplecov", "~> 0.9"
14
+ gem "coveralls", "~> 0.8", require: false
data/.travis.yml CHANGED
@@ -1,9 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.2
4
- #- jruby-head
5
- #- rbx-2.2.7
3
+ - 2.3.0
6
4
  script: bundle exec rake spec:coverage
7
5
  gemfile: .travis-gemfile
8
6
  notifications:
9
- email: false
7
+ email: false
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 2.2.3 / 2016-03-09
2
+
3
+ * Updated dependencies to make it work with Ruby 2.3.0.
4
+
1
5
  ### 2.2.2 / 2014-02-07
2
6
 
3
7
  * Minor fix in `Ballast::Service::Response.reply`.
data/Gemfile CHANGED
@@ -8,13 +8,13 @@ source "http://rubygems.org"
8
8
  gemspec
9
9
 
10
10
  # Testing
11
- gem "rspec", "~> 3.1"
12
- gem "rake", "~> 10.3"
11
+ gem "rspec", "~> 3.4"
12
+ gem "rake", "~> 11.0"
13
13
 
14
14
  # Documentation
15
- gem "simplecov", ">= 0.9"
16
- gem "coveralls", ">= 0.7", require: false
17
- gem "pry", ">= 0"
18
- gem "yard", ">= 0.8"
19
- gem "kramdown", ">= 1.5"
20
- gem "github-markup", ">= 1.3"
15
+ gem "simplecov", "~> 0.11"
16
+ gem "coveralls", "~> 0.8", require: false
17
+ gem "pry", "~> 0.10"
18
+ gem "yard", "~> 0.8"
19
+ gem "kramdown", "~> 1.10"
20
+ gem "github-markup", "~> 1.4"
data/Rakefile CHANGED
@@ -6,8 +6,18 @@
6
6
  require "bundler/gem_tasks"
7
7
  require "rspec/core/rake_task"
8
8
 
9
- RSpec::Core::RakeTask.new("spec")
10
- RSpec::Core::RakeTask.new("spec:coverage") { |t| t.ruby_opts = "-r./spec/coverage_helper" }
9
+ # Compatibility layer for Rake 11.0
10
+ Rake.application.class.send(:alias_method, :last_comment, :last_description) unless Rake.application.respond_to?(:last_comment)
11
+
12
+ RSpec::Core::RakeTask.new("spec") do |t|
13
+ t.ruby_opts = ENV.fetch("RUBY_OPTS", "").to_s
14
+ t.rspec_opts = ENV.fetch("RSPEC_OPTS", "").to_s
15
+ end
16
+
17
+ RSpec::Core::RakeTask.new("spec:coverage") do |t|
18
+ t.ruby_opts = ENV.fetch("RUBY_OPTS", "").to_s + " -r./spec/coverage_helper"
19
+ t.rspec_opts = ENV.fetch("RSPEC_OPTS", "").to_s
20
+ end
11
21
 
12
22
  desc "Generate the documentation"
13
23
  task :docs do
data/doc/Ballast.html CHANGED
@@ -80,7 +80,7 @@
80
80
 
81
81
  <dt class="r1 last">Defined in:</dt>
82
82
  <dd class="r1 last">lib/ballast.rb<span class="defines">,<br />
83
- lib/ballast/emoji.rb,<br /> lib/ballast/errors.rb,<br /> lib/ballast/version.rb,<br /> lib/ballast/service.rb,<br /> lib/ballast/configuration.rb,<br /> lib/ballast/concerns/view.rb,<br /> lib/ballast/ajax_response.rb,<br /> lib/ballast/concerns/common.rb,<br /> lib/ballast/request_domain_matcher.rb,<br /> lib/ballast/concerns/ajax_handling.rb,<br /> lib/ballast/concerns/errors_handling.rb,<br /> lib/ballast/middlewares/default_host.rb</span>
83
+ lib/ballast/emoji.rb,<br /> lib/ballast/errors.rb,<br /> lib/ballast/service.rb,<br /> lib/ballast/version.rb,<br /> lib/ballast/concerns/view.rb,<br /> lib/ballast/configuration.rb,<br /> lib/ballast/ajax_response.rb,<br /> lib/ballast/concerns/common.rb,<br /> lib/ballast/request_domain_matcher.rb,<br /> lib/ballast/concerns/ajax_handling.rb,<br /> lib/ballast/middlewares/default_host.rb,<br /> lib/ballast/concerns/errors_handling.rb</span>
84
84
  </dd>
85
85
 
86
86
  </dl>
@@ -256,9 +256,9 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
256
256
  </div>
257
257
 
258
258
  <div id="footer">
259
- Generated on Sat Feb 7 19:34:05 2015 by
259
+ Generated on Wed Mar 9 10:37:56 2016 by
260
260
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
261
- 0.8.7.6 (ruby-2.2.0).
261
+ 0.8.7.6 (ruby-2.3.0).
262
262
  </div>
263
263
 
264
264
  </body>
@@ -1469,9 +1469,9 @@
1469
1469
  </div>
1470
1470
 
1471
1471
  <div id="footer">
1472
- Generated on Sat Feb 7 19:34:06 2015 by
1472
+ Generated on Wed Mar 9 10:37:57 2016 by
1473
1473
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1474
- 0.8.7.6 (ruby-2.2.0).
1474
+ 0.8.7.6 (ruby-2.3.0).
1475
1475
  </div>
1476
1476
 
1477
1477
  </body>
@@ -118,9 +118,9 @@
118
118
  </div>
119
119
 
120
120
  <div id="footer">
121
- Generated on Sat Feb 7 19:34:06 2015 by
121
+ Generated on Wed Mar 9 10:37:56 2016 by
122
122
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
123
- 0.8.7.6 (ruby-2.2.0).
123
+ 0.8.7.6 (ruby-2.3.0).
124
124
  </div>
125
125
 
126
126
  </body>
@@ -658,9 +658,9 @@
658
658
  </div>
659
659
 
660
660
  <div id="footer">
661
- Generated on Sat Feb 7 19:34:06 2015 by
661
+ Generated on Wed Mar 9 10:37:56 2016 by
662
662
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
663
- 0.8.7.6 (ruby-2.2.0).
663
+ 0.8.7.6 (ruby-2.3.0).
664
664
  </div>
665
665
 
666
666
  </body>
@@ -956,9 +956,9 @@ and <code>%:Z</code> for the zone name considering also DST.</p>
956
956
  </div>
957
957
 
958
958
  <div id="footer">
959
- Generated on Sat Feb 7 19:34:06 2015 by
959
+ Generated on Wed Mar 9 10:37:56 2016 by
960
960
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
961
- 0.8.7.6 (ruby-2.2.0).
961
+ 0.8.7.6 (ruby-2.3.0).
962
962
  </div>
963
963
 
964
964
  </body>
@@ -274,9 +274,9 @@
274
274
  </div>
275
275
 
276
276
  <div id="footer">
277
- Generated on Sat Feb 7 19:34:06 2015 by
277
+ Generated on Wed Mar 9 10:37:56 2016 by
278
278
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
279
- 0.8.7.6 (ruby-2.2.0).
279
+ 0.8.7.6 (ruby-2.3.0).
280
280
  </div>
281
281
 
282
282
  </body>
@@ -881,9 +881,9 @@
881
881
  </div>
882
882
 
883
883
  <div id="footer">
884
- Generated on Sat Feb 7 19:34:06 2015 by
884
+ Generated on Wed Mar 9 10:37:56 2016 by
885
885
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
886
- 0.8.7.6 (ruby-2.2.0).
886
+ 0.8.7.6 (ruby-2.3.0).
887
887
  </div>
888
888
 
889
889
  </body>
@@ -451,9 +451,9 @@ Subfolders are not supported.</p>
451
451
  </div>
452
452
 
453
453
  <div id="footer">
454
- Generated on Sat Feb 7 19:34:06 2015 by
454
+ Generated on Wed Mar 9 10:37:57 2016 by
455
455
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
456
- 0.8.7.6 (ruby-2.2.0).
456
+ 0.8.7.6 (ruby-2.3.0).
457
457
  </div>
458
458
 
459
459
  </body>
@@ -116,9 +116,9 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Feb 7 19:34:06 2015 by
119
+ Generated on Wed Mar 9 10:37:56 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
- 0.8.7.6 (ruby-2.2.0).
121
+ 0.8.7.6 (ruby-2.3.0).
122
122
  </div>
123
123
 
124
124
  </body>
@@ -405,9 +405,9 @@
405
405
  </div>
406
406
 
407
407
  <div id="footer">
408
- Generated on Sat Feb 7 19:34:06 2015 by
408
+ Generated on Wed Mar 9 10:37:56 2016 by
409
409
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
410
- 0.8.7.6 (ruby-2.2.0).
410
+ 0.8.7.6 (ruby-2.3.0).
411
411
  </div>
412
412
 
413
413
  </body>
@@ -790,9 +790,9 @@
790
790
  </div>
791
791
 
792
792
  <div id="footer">
793
- Generated on Sat Feb 7 19:34:06 2015 by
793
+ Generated on Wed Mar 9 10:37:56 2016 by
794
794
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
795
- 0.8.7.6 (ruby-2.2.0).
795
+ 0.8.7.6 (ruby-2.3.0).
796
796
  </div>
797
797
 
798
798
  </body>
@@ -116,9 +116,9 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Feb 7 19:34:06 2015 by
119
+ Generated on Wed Mar 9 10:37:56 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
- 0.8.7.6 (ruby-2.2.0).
121
+ 0.8.7.6 (ruby-2.3.0).
122
122
  </div>
123
123
 
124
124
  </body>
@@ -346,9 +346,9 @@
346
346
  </div>
347
347
 
348
348
  <div id="footer">
349
- Generated on Sat Feb 7 19:34:06 2015 by
349
+ Generated on Wed Mar 9 10:37:56 2016 by
350
350
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
351
- 0.8.7.6 (ruby-2.2.0).
351
+ 0.8.7.6 (ruby-2.3.0).
352
352
  </div>
353
353
 
354
354
  </body>
@@ -152,9 +152,9 @@
152
152
  </div>
153
153
 
154
154
  <div id="footer">
155
- Generated on Sat Feb 7 19:34:06 2015 by
155
+ Generated on Wed Mar 9 10:37:56 2016 by
156
156
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
157
- 0.8.7.6 (ruby-2.2.0).
157
+ 0.8.7.6 (ruby-2.3.0).
158
158
  </div>
159
159
 
160
160
  </body>
@@ -148,9 +148,9 @@
148
148
  </div>
149
149
 
150
150
  <div id="footer">
151
- Generated on Sat Feb 7 19:34:06 2015 by
151
+ Generated on Wed Mar 9 10:37:56 2016 by
152
152
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
153
- 0.8.7.6 (ruby-2.2.0).
153
+ 0.8.7.6 (ruby-2.3.0).
154
154
  </div>
155
155
 
156
156
  </body>
@@ -156,9 +156,9 @@
156
156
  </div>
157
157
 
158
158
  <div id="footer">
159
- Generated on Sat Feb 7 19:34:06 2015 by
159
+ Generated on Wed Mar 9 10:37:56 2016 by
160
160
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
161
- 0.8.7.6 (ruby-2.2.0).
161
+ 0.8.7.6 (ruby-2.3.0).
162
162
  </div>
163
163
 
164
164
  </body>
@@ -116,9 +116,9 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Feb 7 19:34:06 2015 by
119
+ Generated on Wed Mar 9 10:37:56 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
- 0.8.7.6 (ruby-2.2.0).
121
+ 0.8.7.6 (ruby-2.3.0).
122
122
  </div>
123
123
 
124
124
  </body>
@@ -347,9 +347,9 @@
347
347
  </div>
348
348
 
349
349
  <div id="footer">
350
- Generated on Sat Feb 7 19:34:07 2015 by
350
+ Generated on Wed Mar 9 10:37:57 2016 by
351
351
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
352
- 0.8.7.6 (ruby-2.2.0).
352
+ 0.8.7.6 (ruby-2.3.0).
353
353
  </div>
354
354
 
355
355
  </body>
@@ -914,9 +914,9 @@
914
914
  </div>
915
915
 
916
916
  <div id="footer">
917
- Generated on Sat Feb 7 19:34:07 2015 by
917
+ Generated on Wed Mar 9 10:37:57 2016 by
918
918
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
919
- 0.8.7.6 (ruby-2.2.0).
919
+ 0.8.7.6 (ruby-2.3.0).
920
920
  </div>
921
921
 
922
922
  </body>
@@ -1513,9 +1513,9 @@
1513
1513
  </div>
1514
1514
 
1515
1515
  <div id="footer">
1516
- Generated on Sat Feb 7 19:34:06 2015 by
1516
+ Generated on Wed Mar 9 10:37:56 2016 by
1517
1517
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1518
- 0.8.7.6 (ruby-2.2.0).
1518
+ 0.8.7.6 (ruby-2.3.0).
1519
1519
  </div>
1520
1520
 
1521
1521
  </body>
@@ -1269,9 +1269,9 @@
1269
1269
  </div>
1270
1270
 
1271
1271
  <div id="footer">
1272
- Generated on Sat Feb 7 19:34:06 2015 by
1272
+ Generated on Wed Mar 9 10:37:57 2016 by
1273
1273
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1274
- 0.8.7.6 (ruby-2.2.0).
1274
+ 0.8.7.6 (ruby-2.3.0).
1275
1275
  </div>
1276
1276
 
1277
1277
  </body>
@@ -151,7 +151,7 @@
151
151
 
152
152
  </div>
153
153
  </dt>
154
- <dd><pre class="code"><span class='integer val'>2</span>
154
+ <dd><pre class="code"><span class='integer val'>3</span>
155
155
  </pre></dd>
156
156
 
157
157
  <dt id="STRING-constant" class="">STRING =
@@ -184,9 +184,9 @@
184
184
  </div>
185
185
 
186
186
  <div id="footer">
187
- Generated on Sat Feb 7 19:34:06 2015 by
187
+ Generated on Wed Mar 9 10:37:56 2016 by
188
188
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
189
- 0.8.7.6 (ruby-2.2.0).
189
+ 0.8.7.6 (ruby-2.3.0).
190
190
  </div>
191
191
 
192
192
  </body>
data/doc/_index.html CHANGED
@@ -339,9 +339,9 @@
339
339
  </div>
340
340
 
341
341
  <div id="footer">
342
- Generated on Sat Feb 7 19:34:05 2015 by
342
+ Generated on Wed Mar 9 10:37:56 2016 by
343
343
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
344
- 0.8.7.6 (ruby-2.2.0).
344
+ 0.8.7.6 (ruby-2.3.0).
345
345
  </div>
346
346
 
347
347
  </body>
data/doc/file.README.html CHANGED
@@ -106,9 +106,9 @@
106
106
  </div></div>
107
107
 
108
108
  <div id="footer">
109
- Generated on Sat Feb 7 19:34:05 2015 by
109
+ Generated on Wed Mar 9 10:37:56 2016 by
110
110
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
111
- 0.8.7.6 (ruby-2.2.0).
111
+ 0.8.7.6 (ruby-2.3.0).
112
112
  </div>
113
113
 
114
114
  </body>
data/doc/index.html CHANGED
@@ -106,9 +106,9 @@
106
106
  </div></div>
107
107
 
108
108
  <div id="footer">
109
- Generated on Sat Feb 7 19:34:05 2015 by
109
+ Generated on Wed Mar 9 10:37:56 2016 by
110
110
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
111
- 0.8.7.6 (ruby-2.2.0).
111
+ 0.8.7.6 (ruby-2.3.0).
112
112
  </div>
113
113
 
114
114
  </body>
data/doc/method_list.html CHANGED
@@ -94,8 +94,8 @@
94
94
 
95
95
 
96
96
  <li class="r2 ">
97
- <span class='object_link'><a href="Ballast/Service.html#call-class_method" title="Ballast::Service.call (method)">call</a></span>
98
- <small>Ballast::Service</small>
97
+ <span class='object_link'><a href="Ballast/Middlewares/DefaultHost.html#call-instance_method" title="Ballast::Middlewares::DefaultHost#call (method)">#call</a></span>
98
+ <small>Ballast::Middlewares::DefaultHost</small>
99
99
  </li>
100
100
 
101
101
 
@@ -106,20 +106,20 @@
106
106
 
107
107
 
108
108
  <li class="r2 ">
109
- <span class='object_link'><a href="Ballast/Middlewares/DefaultHost.html#call-instance_method" title="Ballast::Middlewares::DefaultHost#call (method)">#call</a></span>
110
- <small>Ballast::Middlewares::DefaultHost</small>
109
+ <span class='object_link'><a href="Ballast/Service.html#call-class_method" title="Ballast::Service.call (method)">call</a></span>
110
+ <small>Ballast::Service</small>
111
111
  </li>
112
112
 
113
113
 
114
114
  <li class="r1 ">
115
- <span class='object_link'><a href="Ballast/AjaxResponse.html#data-instance_method" title="Ballast::AjaxResponse#data (method)">#data</a></span>
116
- <small>Ballast::AjaxResponse</small>
115
+ <span class='object_link'><a href="Ballast/Service/Response.html#data-instance_method" title="Ballast::Service::Response#data (method)">#data</a></span>
116
+ <small>Ballast::Service::Response</small>
117
117
  </li>
118
118
 
119
119
 
120
120
  <li class="r2 ">
121
- <span class='object_link'><a href="Ballast/Service/Response.html#data-instance_method" title="Ballast::Service::Response#data (method)">#data</a></span>
122
- <small>Ballast::Service::Response</small>
121
+ <span class='object_link'><a href="Ballast/AjaxResponse.html#data-instance_method" title="Ballast::AjaxResponse#data (method)">#data</a></span>
122
+ <small>Ballast::AjaxResponse</small>
123
123
  </li>
124
124
 
125
125
 
@@ -256,20 +256,20 @@
256
256
 
257
257
 
258
258
  <li class="r1 ">
259
- <span class='object_link'><a href="Ballast/Middlewares/DefaultHost.html#initialize-instance_method" title="Ballast::Middlewares::DefaultHost#initialize (method)">#initialize</a></span>
260
- <small>Ballast::Middlewares::DefaultHost</small>
259
+ <span class='object_link'><a href="Ballast/RequestDomainMatcher.html#initialize-instance_method" title="Ballast::RequestDomainMatcher#initialize (method)">#initialize</a></span>
260
+ <small>Ballast::RequestDomainMatcher</small>
261
261
  </li>
262
262
 
263
263
 
264
264
  <li class="r2 ">
265
- <span class='object_link'><a href="Ballast/Service.html#initialize-instance_method" title="Ballast::Service#initialize (method)">#initialize</a></span>
266
- <small>Ballast::Service</small>
265
+ <span class='object_link'><a href="Ballast/Errors/Base.html#initialize-instance_method" title="Ballast::Errors::Base#initialize (method)">#initialize</a></span>
266
+ <small>Ballast::Errors::Base</small>
267
267
  </li>
268
268
 
269
269
 
270
270
  <li class="r1 ">
271
- <span class='object_link'><a href="Ballast/Errors/Base.html#initialize-instance_method" title="Ballast::Errors::Base#initialize (method)">#initialize</a></span>
272
- <small>Ballast::Errors::Base</small>
271
+ <span class='object_link'><a href="Ballast/Service.html#initialize-instance_method" title="Ballast::Service#initialize (method)">#initialize</a></span>
272
+ <small>Ballast::Service</small>
273
273
  </li>
274
274
 
275
275
 
@@ -280,8 +280,8 @@
280
280
 
281
281
 
282
282
  <li class="r1 ">
283
- <span class='object_link'><a href="Ballast/RequestDomainMatcher.html#initialize-instance_method" title="Ballast::RequestDomainMatcher#initialize (method)">#initialize</a></span>
284
- <small>Ballast::RequestDomainMatcher</small>
283
+ <span class='object_link'><a href="Ballast/Middlewares/DefaultHost.html#initialize-instance_method" title="Ballast::Middlewares::DefaultHost#initialize (method)">#initialize</a></span>
284
+ <small>Ballast::Middlewares::DefaultHost</small>
285
285
  </li>
286
286
 
287
287
 
@@ -103,9 +103,9 @@
103
103
  </div>
104
104
 
105
105
  <div id="footer">
106
- Generated on Sat Feb 7 19:34:05 2015 by
106
+ Generated on Wed Mar 9 10:37:56 2016 by
107
107
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
- 0.8.7.6 (ruby-2.2.0).
108
+ 0.8.7.6 (ruby-2.3.0).
109
109
  </div>
110
110
 
111
111
  </body>
@@ -16,7 +16,7 @@ module Ballast
16
16
  MINOR = 2
17
17
 
18
18
  # The patch version.
19
- PATCH = 2
19
+ PATCH = 3
20
20
 
21
21
  # The current version of ballast.
22
22
  STRING = [MAJOR, MINOR, PATCH].compact.join(".")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ballast
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.2
4
+ version: 2.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shogun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-08 00:00:00.000000000 Z
11
+ date: 2016-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  version: '0'
182
182
  requirements: []
183
183
  rubyforge_project: ballast
184
- rubygems_version: 2.4.5
184
+ rubygems_version: 2.5.1
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: A collection of base utilities for web frameworks.