dark-capistrano-recipes 0.6.16 → 0.6.17

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- :patch: 16
2
+ :patch: 17
3
3
  :major: 0
4
4
  :build:
5
5
  :minor: 6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dark-capistrano-recipes}
8
- s.version = "0.6.16"
8
+ s.version = "0.6.17"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Phil Misiowiec", "Leonardo Bighetti"]
12
- s.date = %q{2010-10-12}
12
+ s.date = %q{2010-11-30}
13
13
  s.description = %q{Extend the Capistrano gem with these useful recipes}
14
14
  s.email = %q{leonardobighetti@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -1,4 +1,4 @@
1
- Bundler
1
+ # Bundler
2
2
  # Manages gems in a sane way.
3
3
  # http://gembundler.com/
4
4
  Capistrano::Configuration.instance(:must_exist).load do
data/lib/recipes/db.rb CHANGED
@@ -80,6 +80,7 @@ Capistrano::Configuration.instance(:must_exist).load do
80
80
  db_config = ERB.new <<-EOF
81
81
  base: &base
82
82
  adapter: mysql
83
+ encoding: utf8
83
84
  username: #{db_user}
84
85
  password: #{db_pass}
85
86
 
@@ -102,4 +103,10 @@ Capistrano::Configuration.instance(:must_exist).load do
102
103
  set(:db_user) { Capistrano::CLI.ui.ask "Enter #{environment} database username:" }
103
104
  set(:db_pass) { Capistrano::CLI.password_prompt "Enter #{environment} database password:" }
104
105
  end
106
+
107
+ desc "Populates the database with seed data"
108
+ task :seed do
109
+ Capistrano::CLI.ui.say "Populating the database..."
110
+ run "cd #{current_path}; rake RAILS_ENV=#{variables[:rails_env]} db:seed"
111
+ end
105
112
  end
@@ -69,12 +69,8 @@ Capistrano::Configuration.instance(:must_exist).load do
69
69
  EOF
70
70
  task :setup, :roles => :app , :except => { :no_release => true } do
71
71
  # TODO: refactor this to a more generic setup task once we have more socket tasks.
72
- commands = []
73
- commands << "mkdir -p #{sockets_path}"
74
- commands << "chown #{user}:#{group} #{sockets_path} -R"
75
- commands << "chmod +rw #{sockets_path}"
76
-
77
- run commands.join(" && ")
72
+ run "#{try_sudo} mkdir -p #{sockets_path}"
73
+ run "#{try_sudo} chown #{user}:#{group} #{sockets_path} -R"
78
74
  generate_config(unicorn_local_config,unicorn_remote_config)
79
75
  end
80
76
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dark-capistrano-recipes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 39
4
+ hash: 37
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 16
10
- version: 0.6.16
9
+ - 17
10
+ version: 0.6.17
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phil Misiowiec
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-12 00:00:00 -03:00
19
+ date: 2010-11-30 00:00:00 -02:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency