This repository has been archived by the owner on Oct 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from fzingg/newfeature
update README
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
## Hyperloop - The Complete Isomorphic Ruby Framework | ||
|
||
Hyperloop works great with new or existing rails apps, so it's pain free to introduce it to your application. | ||
|
||
Hyperloop has been tested with the most recent Ruby On Rails verions:<br> Rails (4.2), Rails (5.0) and the last Rails (5.1.0.rc1). | ||
|
||
|
||
### Setup | ||
|
||
In your `Gemfile` | ||
|
||
```ruby | ||
gem 'hyperloop' | ||
``` | ||
|
||
then | ||
|
||
```ruby | ||
bundle install | ||
``` | ||
|
||
Once the Hyperloop Gem and all its dependencies have been installed, it's time to run the hyperloop install generator. | ||
|
||
```ruby | ||
rails g hyperloop:install | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Hyperloop | ||
VERSION = '0.5.2' | ||
VERSION = '0.5.4' | ||
end |