Sha256: 01f754e06ca49bd4835f3f4f6230e6fcb7589232d0280ee1385ae4a453dfe170

Contents?: true

Size: 756 Bytes

Versions: 26

Compression:

Stored size: 756 Bytes

Contents

#/bin/bash
APPNAME=$1
echo "working directory is now `pwd`"
rails new $APPNAME
cat database.yml | sed "s/APPNAME/$APPNAME/g" > $APPNAME/config/database.yml
cp -v Gemfile $APPNAME
cd $APPNAME
echo "working directory is now `pwd`"
bundle install
#echo devise:install
#rails g devise:install
#echo devise User
#rails g devise User
echo generator for jquery...
rails g jquery:install --ui -f
echo generator for remotipart...
rails g remotipart -f
cd public/javascripts
echo "working directory is now `pwd`"
rm -v rails.js
wget --no-check-certificate https://github.com/malsup/form/raw/master/jquery.form.js
wget --no-check-certificate https://github.com/JangoSteve/jquery-ujs/raw/remotipart-2-compatible/src/rails.js
cd -
echo "working directory is now `pwd`"

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
inline_forms-1.0.18 lib/otherstuff/mk-new-app
inline_forms-1.0.17 lib/otherstuff/mk-new-app
inline_forms-1.0.16 lib/otherstuff/mk-new-app
inline_forms-1.0.15 lib/otherstuff/mk-new-app
inline_forms-1.0.14 lib/otherstuff/mk-new-app
inline_forms-1.0.13 lib/otherstuff/mk-new-app
inline_forms-1.0.12 lib/otherstuff/mk-new-app
inline_forms-1.0.11 lib/otherstuff/mk-new-app
inline_forms-1.0.10 lib/otherstuff/mk-new-app
inline_forms-1.0.9 lib/otherstuff/mk-new-app
inline_forms-1.0.8 lib/otherstuff/mk-new-app
inline_forms-1.0.6 lib/otherstuff/mk-new-app
inline_forms-1.0.5 lib/otherstuff/mk-new-app
inline_forms-1.0.4 lib/otherstuff/mk-new-app
inline_forms-1.0.3 lib/otherstuff/mk-new-app
inline_forms-1.0.2 lib/otherstuff/mk-new-app
inline_forms-1.0.1 lib/otherstuff/mk-new-app
inline_forms-1.0.0 lib/otherstuff/mk-new-app
inline_forms-0.9.25 lib/otherstuff/mk-new-app
inline_forms-0.9.24 lib/otherstuff/mk-new-app