Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpdaugherty/magazine-reader
https://github.com/mpdaugherty/magazine-reader
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mpdaugherty/magazine-reader
- Owner: mpdaugherty
- Created: 2012-12-21T05:05:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-03-27T22:52:58.000Z (over 1 year ago)
- Last Synced: 2023-04-05T16:10:41.934Z (over 1 year ago)
- Language: Ruby
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
magazine-reader
===============## Install Ruby Version Manager
https://rvm.io/rvm/install/
Windows: http://blog.developwithpassion.com/2012/03/30/installing-rvm-with-cygwin-on-windows/
## Install our Ruby version and set up our gemset
rvm install ruby-1.9.3-p286 --verify-downloads 1
rvm use ruby-1.9.3-p286
rvm gemset create magreader## Clone the repository and CD into it, then say Yes to RVM
git clone [email protected]:mpdaugherty/magazine-reader.git
cd magazine-reader## Install all our gems (including Rails, etc.)
gem install bundler
bundle install