togostanza 0.0.7 → 0.0.8
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 +4 -4
- data/lib/togostanza/application.rb +1 -1
- data/lib/togostanza/version.rb +1 -1
- data/spec/dummy/config.ru +5 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 452e63c2b3d2308004d07c285478808c2f8a9c6e
|
|
4
|
+
data.tar.gz: d650deaa8d075a369dc03aaa1f9ccb45e419b5c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12733a8d3fbafb777749b00c82b5a8f2208928401da92b560c9ca252cf71c74b60c87de9ce7d32b20eeb9b1e45e27d7f197092ebe42f5860cb6f63c864a67416
|
|
7
|
+
data.tar.gz: b4e4a54e1161d1dab2fc1b51ea93322ae158425b8ad111f9556e618abdb76b5e75ded692036bb835af60eed3710a4ab7ed975974087e54aff3abc3fc3c0774f3
|
|
@@ -7,7 +7,7 @@ module TogoStanza
|
|
|
7
7
|
class Application < Sinatra::Base
|
|
8
8
|
set :root, File.expand_path('../../..', __FILE__)
|
|
9
9
|
set :haml, escape_html: true
|
|
10
|
-
set :protection, except: [:json_csrf]
|
|
10
|
+
set :protection, except: [:json_csrf, :frame_options]
|
|
11
11
|
|
|
12
12
|
configure :development do
|
|
13
13
|
register Sinatra::Reloader
|
data/lib/togostanza/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: togostanza
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keita Urashima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -273,6 +273,7 @@ files:
|
|
|
273
273
|
- spec/dummy/bar_stanza/lib/bar_stanza.rb
|
|
274
274
|
- spec/dummy/bar_stanza/stanza.rb
|
|
275
275
|
- spec/dummy/bar_stanza/template.hbs
|
|
276
|
+
- spec/dummy/config.ru
|
|
276
277
|
- spec/dummy/foo_stanza/help.md
|
|
277
278
|
- spec/dummy/foo_stanza/lib/foo_stanza.rb
|
|
278
279
|
- spec/dummy/foo_stanza/stanza.rb
|
|
@@ -325,6 +326,7 @@ test_files:
|
|
|
325
326
|
- spec/dummy/bar_stanza/lib/bar_stanza.rb
|
|
326
327
|
- spec/dummy/bar_stanza/stanza.rb
|
|
327
328
|
- spec/dummy/bar_stanza/template.hbs
|
|
329
|
+
- spec/dummy/config.ru
|
|
328
330
|
- spec/dummy/foo_stanza/help.md
|
|
329
331
|
- spec/dummy/foo_stanza/lib/foo_stanza.rb
|
|
330
332
|
- spec/dummy/foo_stanza/stanza.rb
|