rails_pwnerer 0.6.78 → 0.6.79

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.79. nginx typo fix.
2
+
1
3
  v0.6.78. UTF-8 in mysql configuration.
2
4
 
3
5
  v0.6.77. UTF-8 forced in nginx config.
@@ -32,7 +32,7 @@ class RailsPwnerer::App::NginxConfig
32
32
  f << <<NGINX_CONFIG
33
33
  server {
34
34
  listen #{app_port};
35
- chatset utf-8;
35
+ charset utf-8;
36
36
  #{app_config[:ssl_key] ? 'ssl on;' : ''}
37
37
  #{app_config[:ssl_key] ? "ssl_certificate #{app_config[:ssl_cert]};" : ''}
38
38
  #{app_config[:ssl_key] ? "ssl_certificate_key #{app_config[:ssl_key]};" : ''}
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails_pwnerer}
5
- s.version = "0.6.78"
5
+ s.version = "0.6.79"
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,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 155
4
+ hash: 153
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 78
10
- version: 0.6.78
9
+ - 79
10
+ version: 0.6.79
11
11
  platform: ruby
12
12
  authors:
13
13
  - Victor Costan