rails_pwnerer 0.6.57 → 0.6.58

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.58. Added Gemfile to list of rpwn-changed files to be reverted on VCS ops.
2
+
1
3
  v0.6.57. Added posgresql client libraries to the scaffolding.
2
4
 
3
5
  v0.6.56. Added bundle locking, for safer deployments.
@@ -20,7 +20,7 @@ class RailsPwnage::App::Git
20
20
  # TODO: learn how Rails caches work and kill those too
21
21
  ['app', 'db', 'lib', 'public/images',
22
22
  'public/javascripts', 'public/stylesheets', 'script',
23
- 'test', 'tmp', 'vendor', 'Gemfile'
23
+ 'test', 'tmp', 'vendor',
24
24
  ].each { |dir| cleanup_app_dir app_name, instance_name, dir, app_name_is_dir }
25
25
  end
26
26
 
@@ -40,7 +40,9 @@ class RailsPwnage::App::Svn
40
40
  # reverts the config changes made by rpwn, so svn update doesn't get confused
41
41
  def revert_config_changes(app_name, instance_name)
42
42
  Dir.chdir RailsPwnage::Config[app_name, instance_name][:app_path] do
43
- ['config'].each { |dir| Kernel.system "svn revert --recursive #{dir}" }
43
+ ['config', 'Gemfile'].each do |dir|
44
+ Kernel.system "svn revert --recursive #{dir}"
45
+ end
44
46
  end
45
47
  end
46
48
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails_pwnerer}
5
- s.version = "0.6.57"
5
+ s.version = "0.6.58"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
9
- s.date = %q{2010-03-17}
9
+ s.date = %q{2010-03-18}
10
10
  s.default_executable = %q{bin/rpwn}
11
11
  s.description = %q{Rails deployment tool/hack.}
12
12
  s.email = %q{victor@costan.us}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 57
9
- version: 0.6.57
8
+ - 58
9
+ version: 0.6.58
10
10
  platform: ruby
11
11
  authors:
12
12
  - Victor Costan
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-17 00:00:00 -04:00
17
+ date: 2010-03-18 00:00:00 -04:00
18
18
  default_executable: bin/rpwn
19
19
  dependencies: []
20
20