rails_pwnerer 0.7.1 → 0.7.2

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.7.2. Bugfix in the HTTP / HTTPS mixed support.
2
+
1
3
  v0.7.1. Allow SSL apps to listen on non-SSL port as well.
2
4
 
3
5
  v0.7.0. New config layout facilitates having per-host configs in separate repository.
@@ -32,7 +32,7 @@ class RailsPwnerer::App::NginxConfig
32
32
  f << <<NGINX_CONFIG
33
33
  server {
34
34
  listen #{app_port}#{app_config[:ssl_key] ? ' ssl' : ''};
35
- #{(app_config[:ssl_key] && app_config[:non_ssl_port] != 0) ? "listen #{app_config[:non_ssl_port]}" : "" }
35
+ #{(app_config[:ssl_key] && app_config[:non_ssl_port] != 0) ? "listen #{app_config[:non_ssl_port]};" : "" }
36
36
  charset utf-8;
37
37
  #{app_config[:ssl_key] ? 'ssl on;' : ''}
38
38
  #{app_config[:ssl_key] ? "ssl_certificate #{app_config[:ssl_cert]};" : ''}
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rails_pwnerer"
5
- s.version = "0.7.1"
5
+ s.version = "0.7.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: