Sha256: 064966fc4d401f19c13ebc583bce39c606981a25d4c68ce7298d29006f63dbb8
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
Hisyo is a thin wrapper for your Sinatra project $ gem install hisyo $ rbenv rehash; rehash; # if necessary $ hisyo -v -r ~/myapp create: lib/ create: config/ create: views/ create: public/ create: spec/ create: app/views/ create: app/assets/ create: db/ create: tmp/ create: log/ copy to: spec/spec_helper.rb copy to: spec/hello_spec.rb copy to: config.ru copy to: config/boot.rb copy to: Gemfile copy to: app/helpers.rb copy to: app/app.rb $ cd ~/myapp $ tree -F . ├── Gemfile ├── app/ │ ├── app.rb │ ├── assets/ │ ├── helpers.rb │ └── views/ ├── config/ │ └── boot.rb ├── config.ru ├── db/ ├── lib/ ├── log/ ├── public/ ├── spec/ │ ├── hello_spec.rb │ └── spec_helper.rb ├── tmp/ └── views/ 11 directories, 7 files $ rackup [2012-05-28 02:24:32] INFO WEBrick 1.3.1 [2012-05-28 02:24:32] INFO ruby 1.9.3 (2012-02-16) [x86_64-linux] [2012-05-28 02:24:32] INFO WEBrick::HTTPServer#start: pid=11232 port=9292
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hisyo-0.0.3 | README.mkd |