daddy 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/tasks/db_create.rake +5 -0
  2. metadata +2 -2
@@ -17,6 +17,11 @@ namespace :dad do
17
17
  system("echo 'drop database if exists #{props['database']};' >> tmp/create_databases.sql")
18
18
  system("echo 'create database #{props['database']};' >> tmp/create_databases.sql")
19
19
  system("echo 'grant all on #{props['database']}.* to #{props['username']} identified by \"#{props['password']}\";' >> tmp/create_databases.sql")
20
+
21
+ if ENV['FILE']
22
+ system("echo 'grant all on #{props['database']}.* to #{props['username']}@localhost identified by \"#{props['password']}\";' >> tmp/create_databases.sql")
23
+ system("echo 'grant file on *.* to #{props['username']}@localhost;' >> tmp/create_databases.sql")
24
+ end
20
25
  end
21
26
 
22
27
  system("echo >> tmp/create_databases.sql")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-21 00:00:00.000000000 Z
12
+ date: 2013-05-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capybara