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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4435b0045644e57f9fb1783489901d24e7b0707
4
- data.tar.gz: 499e69c0ca326d4d1531ea8123f5b25c8d4c090a
3
+ metadata.gz: 85c81d4e869efb6ed915595f9fc74a24e677b8e0
4
+ data.tar.gz: 1093a90586ac9d307ca23e78a023097a7b9576e3
5
5
  SHA512:
6
- metadata.gz: cf3c54f20583166cbb422a254be2dc52f05c3726e816ff01f6be42024660915697f043633ead13231d50293130fc27fc10e904b3c930faed62cf0744fd960819
7
- data.tar.gz: 4c9e79ba9ef642812e0407ac1240cd790e594391d5846683d64f212176a3bd7159e109d4963a0fe9c7b2062ba609043b3783af064b2fdd328df6e9158fa2b8ee
6
+ metadata.gz: d5e7dd8563e1806fe1bed3844bdad90bde54f60312af3afd5e634517c8dba6b3c90032310adaa42c2237bf3e04b09f67e253f68ff01b254fd164523af5c7c92a
7
+ data.tar.gz: 2d81ba3ea3eef956dd5653889a8f332f32488fd1034aea8851ed036f648127bfd8209e2fe47618f162e57bd53f7da6e78700e6ff8326e8e728a1b5d94782efd7
@@ -3,10 +3,13 @@ rvm:
3
3
  - 1.9.3
4
4
  - 2.0.0
5
5
  - 2.1.0
6
+ - 2.2.0
6
7
  - jruby
8
+ - jruby-9.0.0.0
7
9
  - rbx-2.1.1
8
10
  - ruby-head
9
11
  matrix:
10
12
  allow_failures:
11
13
  - rvm: rbx-2.1.1
12
14
  - rvm: ruby-head
15
+ sudo: false
@@ -1,6 +1,10 @@
1
- # develop
1
+ # Version 0.5.2
2
+ * Adjust log message levels to be more appropriate to their content
2
3
 
3
- # Version 0.4.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
 
@@ -1,5 +1,8 @@
1
1
  # encoding: utf-8
2
2
 
3
+ require 'virginia/service'
4
+ require 'virginia/document_cache'
5
+
3
6
  module Virginia
4
7
  class Plugin < Adhearsion::Plugin
5
8
 
@@ -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| debug msg.chomp }
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)
@@ -1,3 +1,3 @@
1
1
  module Virginia
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
@@ -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.1
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: 2015-08-05 00:00:00.000000000 Z
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.4.5
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: