rails_pwnerer 0.6.51 → 0.6.52
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/scaffolds/gems.rb +17 -6
- data/rails_pwnerer.gemspec +2 -2
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -9,13 +9,21 @@ class RailsPwnage::Scaffolds::Gems
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def install_servers
|
12
|
-
install_gems %w(rack
|
12
|
+
install_gems %w(memcache-client rack rack-test rack-mount thin mongrel)
|
13
13
|
end
|
14
14
|
|
15
15
|
def install_dbi
|
16
16
|
install_gems %w(mysql sqlite3-ruby)
|
17
17
|
end
|
18
18
|
|
19
|
+
def install_text_tools
|
20
|
+
install_gems %w(tzinfo builder erubis mail text-format i18n)
|
21
|
+
end
|
22
|
+
|
23
|
+
def install_packagers
|
24
|
+
install_gems %w(rake thor bundler)
|
25
|
+
end
|
26
|
+
|
19
27
|
def install_tools
|
20
28
|
# we need this to do controlled app container startups
|
21
29
|
install_gems %w(sys-proctable)
|
@@ -25,16 +33,16 @@ class RailsPwnage::Scaffolds::Gems
|
|
25
33
|
|
26
34
|
# used to get version control passwords
|
27
35
|
install_gems %w(highline termios)
|
28
|
-
|
29
|
-
# useful for building gems and debugging
|
30
|
-
install_gems %w(echoe ruby-debug-ide)
|
31
|
-
|
36
|
+
|
32
37
|
# some code can use this instead of Net::HTTP and be faster
|
33
38
|
install_gems %w(curb)
|
34
39
|
|
35
40
|
# some code can use one of these for XML / HTML parsing and be faster
|
36
|
-
install_gems %w(nokogiri hpricot)
|
41
|
+
install_gems %w(nokogiri hpricot)
|
37
42
|
|
43
|
+
# useful for building gems and debugging
|
44
|
+
install_gems %w(echoe ruby-debug-ide)
|
45
|
+
|
38
46
|
# useful for development, testing, monitoring
|
39
47
|
install_gems %w(mechanize)
|
40
48
|
end
|
@@ -44,7 +52,10 @@ class RailsPwnage::Scaffolds::Gems
|
|
44
52
|
update_gems
|
45
53
|
install_self
|
46
54
|
install_dbi
|
55
|
+
install_packagers
|
56
|
+
install_text_tools
|
47
57
|
install_servers
|
58
|
+
install_gems %w(rails)
|
48
59
|
install_tools
|
49
60
|
end
|
50
61
|
|
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.52"
|
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-02-
|
9
|
+
s.date = %q{2010-02-05}
|
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
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_pwnerer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.52
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Costan
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-02-
|
12
|
+
date: 2010-02-05 00:00:00 -05:00
|
13
13
|
default_executable: bin/rpwn
|
14
14
|
dependencies: []
|
15
15
|
|