Skip to content

Commit

Permalink
New stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviershay committed May 24, 2010
1 parent 51c69e3 commit a8b9aa2
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
6 changes: 6 additions & 0 deletions apps.rb
Expand Up @@ -53,3 +53,9 @@
app 'Things.app' do
source 'http://culturedcode.com/things/download/?e=3102'
end

pkg 'tig'

app 'Skitch.app' do
source 'http://get.skitch.com/skitch-beta.dmg'
end
35 changes: 34 additions & 1 deletion repos.rb
Expand Up @@ -29,7 +29,8 @@

dep 'git repos cloned' do
requires(*(mine + os + [
'money'
'money',
'db-is-your-friend'
]))
end

Expand All @@ -41,6 +42,38 @@
}
end

dep 'db-is-your-friend' do
requires(
'db-is-your-friend website',
'db-is-your-friend presentation',
'db-is-your-friend bookstore'
)
end

dep 'db-is-your-friend website' do
met? { File.exists?(File.expand_path("~/Code/me/db-is-your-friend/website/.git")) }
meet {
shell %Q{mkdir -p ~/Code/me}
shell %Q{git clone ssh://rhnh.net/~/repos/db-is-your-friend/website.git ~/Code/me/db-is-your-friend/website}
}
end

dep 'db-is-your-friend presentation' do
met? { File.exists?(File.expand_path("~/Code/me/db-is-your-friend/presentation/.git")) }
meet {
shell %Q{mkdir -p ~/Code/me}
shell %Q{git clone ssh://rhnh.net/~/repos/db-is-your-friend/presentation.git ~/Code/me/db-is-your-friend/presentation}
}
end

dep 'db-is-your-friend bookstore' do
met? { File.exists?(File.expand_path("~/Code/me/db-is-your-friend/bookstore/.git")) }
meet {
shell %Q{mkdir -p ~/Code/me}
shell %Q{git clone ssh://rhnh.net/~/repos/db-is-your-friend/bookstore.git ~/Code/me/db-is-your-friend/bookstore}
}
end

mine.each do |x|
dep x do
met? { File.exists?(File.expand_path("~/Code/me/#{x}/.git")) }
Expand Down
1 change: 1 addition & 0 deletions ruby.rb
Expand Up @@ -8,3 +8,4 @@
end

pkg 'coffee-script'
pkg 'mysql'
8 changes: 8 additions & 0 deletions vim.rb
Expand Up @@ -85,3 +85,11 @@ def pathogen_plugin(name)
end
end
pathogen_plugin "vim-surround"
pathogen_plugin "vim-haml"

dep 'vim env' do
requires(
'vim-surround installed',
'vim-haml installed'
)
end

0 comments on commit a8b9aa2

Please sign in to comment.