rails_pwnerer 0.6.36 → 0.6.37

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 CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.37. Added the curb gem and its lib dependency to the set of scaffolded gems.
2
+
1
3
  v0.6.36. Moved the LSB header from rpwn (how'd it get there?!) to rpwnctl.
2
4
 
3
5
  v0.6.35. Added db to the directories with application caches - it has schema.rb.
@@ -28,6 +28,9 @@ class RailsPwnage::Scaffolds::Gems
28
28
 
29
29
  # useful for building gems and debugging
30
30
  install_gems %w(echoe)
31
+
32
+ # some code can use this instead of Net::HTTP and be faster
33
+ install_gems %w(curb)
31
34
  end
32
35
 
33
36
  # runner
@@ -31,6 +31,9 @@ class RailsPwnage::Scaffolds::Packages
31
31
  # needed by xml parsers
32
32
  install_packages %w(libxml2-dev libxslt1-dev)
33
33
 
34
+ # needed by curb which does HTTP fetching
35
+ install_packages %w(libcurl4-openssl-dev)
36
+
34
37
  # needed by sqlite-3 ruby gem in tools
35
38
  install_packages %w(libsqlite3-0 libsqlite3-dev sqlite3), :source => true
36
39
 
@@ -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.36"
5
+ s.version = "0.6.37"
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{2009-02-25}
9
+ s.date = %q{2009-03-22}
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.36
4
+ version: 0.6.37
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: 2009-02-25 00:00:00 -05:00
12
+ date: 2009-03-22 00:00:00 -04:00
13
13
  default_executable: bin/rpwn
14
14
  dependencies: []
15
15