cap-recipes 0.3.34 → 0.3.35

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.
@@ -2,4 +2,4 @@
2
2
  :major: 0
3
3
  :minor: 3
4
4
  :build:
5
- :patch: 34
5
+ :patch: 35
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cap-recipes}
8
- s.version = "0.3.34"
8
+ s.version = "0.3.35"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nathan Esquenazi"]
@@ -32,7 +32,7 @@ Capistrano::Configuration.instance(true).load do
32
32
  end
33
33
 
34
34
  task :setup_db_path, :role => :app do
35
- sudo "mkdir -p #{mongodb_path}"
35
+ sudo "mkdir -p #{mongodb_data_path}"
36
36
  mongodb.start
37
37
  end
38
38
  end
@@ -7,7 +7,7 @@ Capistrano::Configuration.instance(true).load do
7
7
  namespace :mongodb do
8
8
  desc "Starts the mongodb server"
9
9
  task :start, :role => :app do
10
- sudo "#{mongodb_bin_path}/bin/mongod --fork --logpath #{mongodb_log} --logappend --dbpath #{mongodb_path}"
10
+ sudo "#{mongodb_bin_path}/bin/mongod --fork --logpath #{mongodb_log} --logappend --dbpath #{mongodb_data_path}"
11
11
  end
12
12
 
13
13
  desc "Stop the mongodb server"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cap-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.34
4
+ version: 0.3.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi