rails_pwnerer 0.4.16 → 0.4.17
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/packages.rb +3 -3
- data/rails_pwnerer.gemspec +2 -2
- metadata +1 -1
data/CHANGELOG
CHANGED
|
@@ -6,13 +6,13 @@ class RailsPwnage::Scaffolds::Packages
|
|
|
6
6
|
# the packages needed to manage the server remotely and instal applications
|
|
7
7
|
def install_management
|
|
8
8
|
# dpkg-dev allows building from source
|
|
9
|
-
install_packages %w(dpkg_dev)
|
|
10
|
-
|
|
11
9
|
# openssh-server allows us to ssh into the box
|
|
10
|
+
install_packages %w(dpkg_dev openssh-server)
|
|
11
|
+
|
|
12
12
|
# subversion is needed to pull code from SVN repositories
|
|
13
13
|
# ddclient does dynamic DNS
|
|
14
14
|
# avahi-daemon does mDNS, a.k.a. Bonjour (makes "ping hostname.local" work)
|
|
15
|
-
install_packages %w(
|
|
15
|
+
install_packages %w(subversion ddclient avahi-daemon), :source => true
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
# packages that are needed by popular gems
|
data/rails_pwnerer.gemspec
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
# Gem::Specification for Rails_pwnerer-0.4.
|
|
2
|
+
# Gem::Specification for Rails_pwnerer-0.4.17
|
|
3
3
|
# Originally generated by Echoe
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = %q{rails_pwnerer}
|
|
7
|
-
s.version = "0.4.
|
|
7
|
+
s.version = "0.4.17"
|
|
8
8
|
|
|
9
9
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
10
10
|
|