rails_pwnerer 0.6.92 → 0.6.93

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.93. Better ordering of tasks upon app install and update.
2
+
1
3
  v0.6.92. Use 'bundle exec rake' instead of 'rake' for apps with a Gemfile.
2
4
 
3
5
  v0.6.91. Support for the asset pipeline in Rails 3.1.
@@ -27,7 +27,7 @@ module RailsPwnerer::App
27
27
  break unless success == :next
28
28
  end
29
29
  if success == :ok
30
- [Assets, Config, Files, Gems, Database, ClusterConfig, NginxConfig, Scripts].each do |mod|
30
+ [Config, Gems, Assets, Files, Database, ClusterConfig, NginxConfig, Scripts].each do |mod|
31
31
  mod.new.setup app, instance
32
32
  end
33
33
  Scripts.new.pre_start app, instance
@@ -55,7 +55,7 @@ module RailsPwnerer::App
55
55
  mod.new.update_prefetch app, instance
56
56
  end
57
57
  update_app app, instance do
58
- [Git, Perforce, Svn, Assets, Config, Gems, Files, Database, Scripts].each do |mod|
58
+ [Git, Perforce, Svn, Config, Gems, Assets, Files, Database, Scripts].each do |mod|
59
59
  mod.new.update app, instance
60
60
  end
61
61
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails_pwnerer}
5
- s.version = "0.6.92"
5
+ s.version = "0.6.93"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{Victor Costan}]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 191
4
+ hash: 189
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 92
10
- version: 0.6.92
9
+ - 93
10
+ version: 0.6.93
11
11
  platform: ruby
12
12
  authors:
13
13
  - Victor Costan