rails_pwnerer 0.6.57 → 0.6.58
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.
- data/CHANGELOG +2 -0
- data/lib/pwnage/app/vcs/git.rb +1 -1
- data/lib/pwnage/app/vcs/svn.rb +3 -1
- data/rails_pwnerer.gemspec +2 -2
- metadata +3 -3
data/CHANGELOG
CHANGED
data/lib/pwnage/app/vcs/git.rb
CHANGED
@@ -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',
|
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
|
|
data/lib/pwnage/app/vcs/svn.rb
CHANGED
@@ -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
|
43
|
+
['config', 'Gemfile'].each do |dir|
|
44
|
+
Kernel.system "svn revert --recursive #{dir}"
|
45
|
+
end
|
44
46
|
end
|
45
47
|
end
|
46
48
|
|
data/rails_pwnerer.gemspec
CHANGED
@@ -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.
|
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-
|
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
|
-
-
|
9
|
-
version: 0.6.
|
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
|
+
date: 2010-03-18 00:00:00 -04:00
|
18
18
|
default_executable: bin/rpwn
|
19
19
|
dependencies: []
|
20
20
|
|