virginia 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/CHANGELOG.md +6 -2
- data/README.md +1 -1
- data/lib/virginia/plugin.rb +3 -0
- data/lib/virginia/service.rb +1 -1
- data/lib/virginia/version.rb +1 -1
- data/virginia.gemspec +1 -0
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85c81d4e869efb6ed915595f9fc74a24e677b8e0
|
4
|
+
data.tar.gz: 1093a90586ac9d307ca23e78a023097a7b9576e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5e7dd8563e1806fe1bed3844bdad90bde54f60312af3afd5e634517c8dba6b3c90032310adaa42c2237bf3e04b09f67e253f68ff01b254fd164523af5c7c92a
|
7
|
+
data.tar.gz: 2d81ba3ea3eef956dd5653889a8f332f32488fd1034aea8851ed036f648127bfd8209e2fe47618f162e57bd53f7da6e78700e6ff8326e8e728a1b5d94782efd7
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# Version 0.5.2
|
2
|
+
* Adjust log message levels to be more appropriate to their content
|
2
3
|
|
3
|
-
# Version 0.
|
4
|
+
# Version 0.5.1
|
5
|
+
* Adding debug formatting to Rack request log entries
|
6
|
+
|
7
|
+
# Version 0.5.0
|
4
8
|
* BREAKING CHANGES! See the updated example in the README and the changes described below:
|
5
9
|
* Support for storing document content-types associated with each cached document. You must now specify the content type (or use the default of text/plain) when caching a document. This way Virginia knows how to serve it when it is requested.
|
6
10
|
* Wrap cached documents and store them as Virginia::DocumentCache::Document. The wrapped document is what will be returned from the cache.
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Virginia
|
1
|
+
# Virginia [![Build Status](https://travis-ci.org/adhearsion/virginia.svg?branch=develop)](https://travis-ci.org/adhearsion/virginia)
|
2
2
|
|
3
3
|
Virginia is a Reel interface to Adhearsion, named after a dance originating in the 17th century, the Virginia Reel. Now your web apps can dance with your voice apps!
|
4
4
|
|
data/lib/virginia/plugin.rb
CHANGED
data/lib/virginia/service.rb
CHANGED
@@ -14,7 +14,7 @@ module Virginia
|
|
14
14
|
Port: config[:port]
|
15
15
|
}.merge(options)
|
16
16
|
|
17
|
-
Virginia.logger.singleton_class.redefine_method(:write) { |msg|
|
17
|
+
Virginia.logger.singleton_class.redefine_method(:write) { |msg| info msg.chomp }
|
18
18
|
|
19
19
|
app = Rack::CommonLogger.new(app, Virginia.logger)
|
20
20
|
supervisor = ::Reel::Rack::Server.supervise_as(:reel_rack_server, app, options)
|
data/lib/virginia/version.rb
CHANGED
data/virginia.gemspec
CHANGED
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.add_runtime_dependency %q<adhearsion>, ["~> 2.6"]
|
21
21
|
s.add_runtime_dependency %q<activesupport>, [">= 3.0"]
|
22
22
|
s.add_runtime_dependency %q<reel>, ["~> 0.5.0"]
|
23
|
+
s.add_runtime_dependency %q<http>, ["~> 0.8.0"]
|
23
24
|
s.add_runtime_dependency %q<reel-rack>
|
24
25
|
|
25
26
|
s.add_development_dependency %q<bundler>, ["~> 1.0"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: virginia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luca Pradovera
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: adhearsion
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.5.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: http
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.8.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.8.0
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: reel-rack
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -186,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
200
|
version: '0'
|
187
201
|
requirements: []
|
188
202
|
rubyforge_project: virginia
|
189
|
-
rubygems_version: 2.
|
203
|
+
rubygems_version: 2.2.2
|
190
204
|
signing_key:
|
191
205
|
specification_version: 4
|
192
206
|
summary: A Reel interface to Adhearsion
|
@@ -196,3 +210,4 @@ test_files:
|
|
196
210
|
- spec/virginia/document_cache/document_spec.rb
|
197
211
|
- spec/virginia/document_cache_spec.rb
|
198
212
|
- spec/virginia/service_spec.rb
|
213
|
+
has_rdoc:
|