nodex 0.0.8 → 0.0.9

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.
Files changed (3) hide show
  1. data/lib/nodex/dsl.rb +5 -1
  2. data/lib/nodex/version.rb +1 -1
  3. metadata +2 -2
@@ -42,11 +42,15 @@ module Nodex
42
42
  remote_run "cd #{application_path} && #{bundle_cmd}" unless skip_step?('bundle_install')
43
43
  end
44
44
 
45
+ def rake_gems_install
46
+ remote_run "cd #{application_path} && #{rake_task("gems:install")}" unless skip_step?('install_gems')
47
+ end
48
+
45
49
  def install_gems
46
50
  if using_bundler?
47
51
  bundle_install
48
52
  else
49
- remote_run "cd #{application_path} && rake gems:install RAILS_ENV=#{environment}" unless skip_step?('install_gems')
53
+ rake_gems_install
50
54
  end
51
55
  end
52
56
 
@@ -1,3 +1,3 @@
1
1
  module Nodex
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: nodex
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8
5
+ version: 0.0.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bruno S. Barros
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-06 00:00:00 -03:00
13
+ date: 2011-03-07 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency