rails_pwnerer 0.6.79 → 0.6.80

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.80. UTF-8 when creating mysql databases.
2
+
1
3
  v0.6.79. nginx typo fix.
2
4
 
3
5
  v0.6.78. UTF-8 in mysql configuration.
@@ -18,7 +18,7 @@ class RailsPwnerer::App::Database
18
18
  case action
19
19
  when :create
20
20
  sql_commands = <<ENDSQL
21
- CREATE DATABASE #{db_name};
21
+ CREATE DATABASE #{db_name} DEFAULT CHARSET=utf8;
22
22
  GRANT ALL ON #{db_name}.* TO '#{db_user}'@'localhost' IDENTIFIED BY '#{db_pass}' WITH GRANT OPTION;
23
23
  ENDSQL
24
24
  when :rekey
@@ -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.79"
5
+ s.version = "0.6.80"
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: 153
4
+ hash: 167
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 79
10
- version: 0.6.79
9
+ - 80
10
+ version: 0.6.80
11
11
  platform: ruby
12
12
  authors:
13
13
  - Victor Costan