okiess (owner)

Revisions

gist: 14545 Download_button fork
public
Public Clone URL: git://gist.github.com/14545.git
Embed All Files: show embed
refresh_merb_edge_stack.sh #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
rm -rf src
git rm -rf bin
 
thor merb:edge:core
thor merb:tasks:setup
 
bin/thor merb:edge:more
bin/thor merb:edge:plugins
 
bin/thor merb:edge:dm_core
bin/thor merb:edge:dm_more
 
bin/thor merb:edge:do
 
bin/thor merb:source:clone dm-paperclip --sources=.sources.yml
 
git rm -rf gems
 
bin/thor merb:source:install extlib
bin/thor merb:source:install merb-core
bin/thor merb:source:install merb-more
bin/thor merb:source:install merb-plugins
bin/thor merb:source:install merb-plugins/merb_auth/merb_auth-core
bin/thor merb:source:install merb-plugins/merb_auth/merb_auth-more
bin/thor merb:source:install merb-plugins/merb_auth/slices/merb_auth_password_slice
 
bin/thor merb:source:install do/data_objects
bin/thor merb:source:install do/do_sqlite3
bin/thor merb:source:install do/do_mysql
 
bin/thor merb:source:install dm-core
bin/thor merb:source:install dm-more
bin/thor merb:source:install dm-more/merb_datamapper
bin/thor merb:source:install dm-paperclip
 
bin/thor merb:gems:install prawn
bin/thor merb:gems:install merb_has_flash
 
git add gems
git add bin