https://github.com/bsm/grape-app
https://github.com/bsm/grape-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsm/grape-app
- Owner: bsm
- License: mit
- Created: 2015-06-17T15:38:00.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T18:29:55.000Z (over 1 year ago)
- Last Synced: 2025-03-22T19:02:24.204Z (about 1 year ago)
- Language: Ruby
- Size: 124 KB
- Stars: 6
- Watchers: 4
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grape::App
Grape::App is an attempt to 'railsify' the process of developing standalone grape apps.
## Usage
Install via gem:
```shell
$ gem install grape-app
```
Generate a new app:
```shell
$ grape-app new my_app
create my_app/config/locales/en.yml
create my_app/config/environments/production.rb
...
```
Install bundle:
```shell
$ cd my_app
$ bundle install
..
Bundle complete! 10 Gemfile dependencies, 48 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
```