summaryrefslogtreecommitdiff
path: root/config/software/ruby-example.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/software/ruby-example.rb')
-rw-r--r--config/software/ruby-example.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/config/software/ruby-example.rb b/config/software/ruby-example.rb
deleted file mode 100644
index 31bc0db..0000000
--- a/config/software/ruby-example.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# This is an example software definition for a Ruby project.
-#
-# Lots of software definitions for popular open source software
-# already exist in `opscode-omnibus`:
-#
-# https://github.com/opscode/omnibus-software/tree/master/config/software
-#
-name "ruby-example"
-version "1.0.0"
-
-dependency "ruby"
-dependency "rubygems"
-dependency "bundler"
-dependency "rsync"
-
-source :git => "git://github.com/example/ruby.git"
-
-relative_path "ruby-example"
-
-build do
- bundle "install --path=#{install_dir}/embedded/service/gem"
- command "mkdir -p #{install_dir}/embedded/service/ruby-example"
- command "#{install_dir}/embedded/bin/rsync -a --delete --exclude=.git/*** --exclude=.gitignore ./ #{install_dir}/embedded/service/ruby-example/"
-end