https://github.com/fdv/fdv-rails-app-installer
Fork of the old rails app installer
https://github.com/fdv/fdv-rails-app-installer
Last synced: 8 months ago
JSON representation
Fork of the old rails app installer
- Host: GitHub
- URL: https://github.com/fdv/fdv-rails-app-installer
- Owner: fdv
- License: mit
- Created: 2009-12-28T19:39:30.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2009-12-28T19:40:51.000Z (over 16 years ago)
- Last Synced: 2025-07-23T00:42:58.329Z (11 months ago)
- Language: Ruby
- Homepage: http://t37.net
- Size: 89.8 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
This is an installer for Rails applications. It's designed to allow users to
install Rails apps onto their own systems with a minimum amount of effort.
This installer was originally part of Typo (http://typosphere.org).
= Adding the installer to your Rails app
To add the installer to your application, cd to your application's directory
and run 'rails-app-installer-setup APPNAME'. This will create several files,
including 'bin/APPNAME' and 'lib/tasks/release.rake'. Edit these files to make
sure that they're appropriate for your application and then add them to your
revision control system.
You should now be able to test the installer like this:
$ ruby ./bin/my_installer install /tmp/foo cwd
This will try to install your app in `/tmp/foo` using the current directory as
a template. If you leave off the `cwd` option at the end, then the installer
will look for the most recent Ruby GEM for your app, using the
`application_name` line from the installer as the gem name.
= Creating a Gem
= Using the installer