https://github.com/smashingboxes/boxcar-generator-archive
A tool for generating Rails applications with the best practices of the Smashing Boxes team.
https://github.com/smashingboxes/boxcar-generator-archive
rails rails-template
Last synced: 6 months ago
JSON representation
A tool for generating Rails applications with the best practices of the Smashing Boxes team.
- Host: GitHub
- URL: https://github.com/smashingboxes/boxcar-generator-archive
- Owner: smashingboxes
- License: mit
- Created: 2016-03-10T15:23:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T13:23:35.000Z (almost 7 years ago)
- Last Synced: 2025-05-07T05:06:28.009Z (11 months ago)
- Topics: rails, rails-template
- Language: Ruby
- Homepage:
- Size: 343 KB
- Stars: 16
- Watchers: 4
- Forks: 2
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Boxcar
[](https://travis-ci.org/smashingboxes/boxcar)
Boxcar is the base Rails application used at [Smashing Boxes](http://smashingboxes.com/). It is heavily inspired by [thoughtbot's suspenders](https://github.com/thoughtbot/suspenders).
## Installation
First install the boxcar gem (eventually, we'll have it published on rubygems, but there's [some
naming conflicts](https://github.com/dstrctrng/boxcar/issues/2) at the moment):
```sh
git clone git@github.com:smashingboxes/boxcar.git
cd boxcar
bundle install
```
## Usage
```sh
bin/boxcar new path/to/project_name
```
Don't forget to replace `path/to/project_name` with the actual path. For example, if you want to
make a hello world app, you might run `bin/boxcar new ~/repos/hello-world`.
## Contributing
If you'd like to contribute to Boxcar, please see [CONTRIBUTING.md](/.github/CONTRIBUTING.md).