Skip to content

Commit

Permalink
Basic ubiregi dev deps to install redis/mysql/mongo and bundle.
Browse files Browse the repository at this point in the history
  • Loading branch information
benhoskings committed Aug 18, 2014
1 parent 7af3385 commit 12bf4db
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions ubiregi.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

dep 'ubiregi' do
requires [
'redis.bin',
'mysql.bin',
'mongodb.bin',

'common:app bundled'.with('.', 'development'),
]
end

dep 'redis.bin' do
provides 'redis-server', 'redis-cli'
end

dep 'mysql.bin' do
provides 'mysql ~> 5.6.0'
end

dep 'mongodb.bin' do
provides 'mongod', 'mongo'
end

0 comments on commit 12bf4db

Please sign in to comment.