Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhsc/market_place_api
Rails pure API
https://github.com/jhsc/market_place_api
Last synced: about 1 month ago
JSON representation
Rails pure API
- Host: GitHub
- URL: https://github.com/jhsc/market_place_api
- Owner: jhsc
- Created: 2016-03-30T05:50:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T21:37:57.000Z (about 2 years ago)
- Last Synced: 2024-04-16T12:10:17.363Z (8 months ago)
- Language: Ruby
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Rails 4 pure API
- Rails 4.2.6
- Ruby 2.3.0
- marketplaceapi_gemset
- Angular (Frontend)Setting up Rbenv Gemset
--------------
Create a new project folder. Create rbenv gemset, and install appropiate gems needed for project.
```sh
mkdir market_place_api && cd
rbenv gemset create 2.1.3 marketplaceapi_gemset
echo "marketplaceapi_gemset" > .rbenv-gemsets
echo "2.3.0" > .rbenv-version#working inside project directory
rbenv gemset active
gem install bundler rails --no-rdoc --no-ri
rbenv rehash
# optional to view downloaded gems
rbenv gemset list
gem list
```