agile-proxy-jruby 0.1.25-jruby → 0.1.26-jruby

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: 15926e8c2229e6d48005ff1c7196558359b5fe69
4
- data.tar.gz: ab1f1ad24f3f00219c3035a70901f4d8f94270ea
3
+ metadata.gz: 37d4f4d4f325bafbcc837495b102b89ea14e93a3
4
+ data.tar.gz: 2253933bc4732352d668a964200802cb4958c865
5
5
  SHA512:
6
- metadata.gz: 801ae9e3cee2fd6cc108b853bf1f0696f7acb067356f9629975408623f3d5a66823491571996dde5e8a86e2b9aa39f4d9b5d0a6b3a469a3802b77977727d88a4
7
- data.tar.gz: 029dc8adb94c4c3f8f07572a60f08f409521d72c31ce1dafebb4456e3e951ea742257f4d90f0a0c185c027f63225b6b0b250d6dcbcaa473d0b287ac42273b358
6
+ metadata.gz: 66072453cdddd1d3272357bd74baeacb02d4a2806d7d888a2cb120f997d8cedfaa0fe27ffb16b1aedc1e7b5a60d6d4aa5308918c33074ef47605e487700d362f
7
+ data.tar.gz: 5f47b1b88a37fdb9eb47fdee7375d1993912884823187d0c8ae1ec1941de30203d31d977b28a618390dac864d8d19745af42d5128575f84b3456394d9675a003
data/README.md CHANGED
@@ -128,4 +128,5 @@ v0.1.23 - Switched to goliath instead of thin. The gem now installs under jruby
128
128
  v0.1.24 - Added caching
129
129
  v0.1.25 - Caching now disabled by default but enabled in config.
130
130
  Direct server now functional
131
+ v0.1.26 - index.html is now setup as the root of a static dir
131
132
 
@@ -24,7 +24,7 @@ module AgileProxy
24
24
  notFoundApp = -> {[404, {}, 'Not Found']}
25
25
  runner.app = ::Goliath::Rack::Builder.app do
26
26
  map '/' do
27
- run ::Rack::Cascade.new([::Rack::Static.new(notFoundApp, root: ROOT, urls: ['']), ::AgileProxy::StubHandler.new])
27
+ run ::Rack::Cascade.new([::Rack::Static.new(notFoundApp, root: ROOT, urls: [''], index: 'index.html'), ::AgileProxy::StubHandler.new])
28
28
  end
29
29
  end
30
30
  runner.run
@@ -2,5 +2,5 @@
2
2
  #
3
3
  # The Agile Proxy module is a common namespace for all classes / sub modules.
4
4
  module AgileProxy
5
- VERSION = '0.1.25'
5
+ VERSION = '0.1.26'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agile-proxy-jruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.25
4
+ version: 0.1.26
5
5
  platform: jruby
6
6
  authors:
7
7
  - Gary Taylor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-10 00:00:00.000000000 Z
11
+ date: 2015-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake