include_recipe "accounts"
include_recipe "apache"
include_recipe "git"
+include_recipe "ruby"
-package %w[
- ruby
- ruby-dev
+package %W[
make
gcc
g++
libsqlite3-dev
]
-gem_package "bundler" do
- version "~> 1.17.2"
-end
-
directory "/srv/blogs.openstreetmap.org" do
owner "blogs"
group "blogs"
- mode 0o755
+ mode "755"
end
git "/srv/blogs.openstreetmap.org" do
depth 1
user "blogs"
group "blogs"
- notifies :run, "execute[/srv/blogs.openstreetmap.org/Gemfile]", :immediately
+ notifies :run, "bundle_install[/srv/blogs.openstreetmap.org]", :immediately
end
-execute "/srv/blogs.openstreetmap.org/Gemfile" do
+bundle_install "/srv/blogs.openstreetmap.org" do
action :nothing
- command "bundle install --deployment"
- cwd "/srv/blogs.openstreetmap.org"
- user "blogs"
- group "blogs"
- notifies :run, "execute[/srv/blogs.openstreetmap.org]", :immediately
+ options "--deployment"
+ user "root"
+ group "root"
+ notifies :run, "bundle_exec[/srv/blogs.openstreetmap.org]", :immediately
end
-execute "/srv/blogs.openstreetmap.org" do
+bundle_exec "/srv/blogs.openstreetmap.org" do
action :nothing
- command "bundle exec pluto build -t osm -o build"
- cwd "/srv/blogs.openstreetmap.org"
+ command "pluto build -t osm -o build"
user "blogs"
group "blogs"
end