xgamerx-cap-recipes 0.0.9 → 0.1.0

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.
@@ -60,7 +60,6 @@ Capistrano::Configuration.instance(true).load do
60
60
  desc "Repair permissions to allow user to perform all actions"
61
61
  task :repair_permissions, :role => :app do
62
62
  puts "Applying correct permissions to allow for proper command execution"
63
- sudo "chmod -R 744 #{current_path}"
64
63
  sudo "chown -R nate:nate #{current_path}"
65
64
  end
66
65
  end
@@ -48,7 +48,7 @@ Capistrano::Configuration.instance(true).load do
48
48
  desc "Repair permissions to allow user to perform all actions"
49
49
  task :repair_permissions, :role => :app do
50
50
  puts "Applying correct permissions to allow for proper command execution"
51
- sudo "chmod -R 744 #{current_path}"
51
+ sudo "chmod -R 744 #{current_path}/log #{current_path}/tmp"
52
52
  sudo "chown -R nate:nate #{current_path}"
53
53
  end
54
54
 
@@ -1,8 +1,8 @@
1
1
  module CapRecipes #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 0
5
- TINY = 9
4
+ MINOR = 1
5
+ TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgamerx-cap-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi