Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit d7ae050

Browse files
committed
working
1 parent 4033a85 commit d7ae050

File tree

23 files changed

+1564
-43
lines changed

23 files changed

+1564
-43
lines changed

.c9/project.settings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": {
99
"@builder": "auto",
1010
"@path": "/.c9/builders",
11-
"@saveall": "true"
11+
"@saveall": true
1212
},
1313
"find.nak": {
1414
"@searchLimit": 100

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ group :development do
5252
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
5353
gem 'spring'
5454
gem 'spring-watcher-listen', '~> 2.0.0'
55-
gem 'opal_hot_reloader', git: 'https://github.com/fkchang/opal-hot-reloader.git'
55+
gem 'opal_hot_reloader', git: 'https://github.com/catprintlabs/opal-hot-reloader.git'
5656
end
5757

5858
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
2-
remote: https://github.com/fkchang/opal-hot-reloader.git
3-
revision: 3438a1cf49c3f5b3d0936b08b6c594c8458a651c
2+
remote: https://github.com/catprintlabs/opal-hot-reloader.git
3+
revision: a2870873fea44aababb410d1e5ec60f0b40a69a2
44
specs:
55
opal_hot_reloader (0.1.4)
66
listen (~> 3.0)
@@ -116,7 +116,7 @@ GEM
116116
hyper-operation (>= 0.5.0)
117117
hyper-model (0.6.0)
118118
hyper-mesh
119-
hyper-operation (0.5.7)
119+
hyper-operation (0.5.8)
120120
activerecord (>= 0.3.0)
121121
hyper-component (>= 0.12.2)
122122
hyperloop-config (>= 0.9.7)
@@ -145,7 +145,7 @@ GEM
145145
hyperloop-config (0.9.10)
146146
opal
147147
opal-browser
148-
i18n (0.8.1)
148+
i18n (0.8.4)
149149
iniparse (1.4.2)
150150
invoker (1.5.1)
151151
dotenv (~> 2.0)
@@ -175,21 +175,21 @@ GEM
175175
nokogiri (>= 1.5.9)
176176
macaddr (1.7.1)
177177
systemu (~> 2.6.2)
178-
mail (2.6.5)
178+
mail (2.6.6)
179179
mime-types (>= 1.16, < 4)
180180
method_source (0.8.2)
181181
mime-types (3.1)
182182
mime-types-data (~> 3.2015)
183183
mime-types-data (3.2016.0521)
184-
mini_portile2 (2.1.0)
184+
mini_portile2 (2.2.0)
185185
minitest (5.10.2)
186186
multi_json (1.12.1)
187187
mutations (0.8.1)
188188
activesupport
189189
mysql2 (0.4.6)
190-
nio4r (2.0.0)
191-
nokogiri (1.7.2)
192-
mini_portile2 (~> 2.1.0)
190+
nio4r (2.1.0)
191+
nokogiri (1.8.0)
192+
mini_portile2 (~> 2.2.0)
193193
opal (0.10.4)
194194
hike (~> 1.2)
195195
sourcemap (~> 0.1.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<h3 align="center">The Complete Isomorphic Ruby Framework</h3>
1414

1515
<br>
16-
16+
[POW](/readelse.md)
1717
Clone this repo onto your local machine and you will be ready to code up a full stack Hyperloop app. You will need to have [Ruby](https://www.ruby-lang.org/en/documentation/installation/) and the [Mysql database server] (https://dev.mysql.com/doc/refman/5.7/en/installing.html) installed.
1818

1919
You can also clone the repo into a [Cloud9 virtual IDE](https://c9.io) workspace for an even quicker install ([details here.](https://github.com/ruby-hyperloop/rails-clone-and-go/blob/master/cloud9-setup.md))

app/assets/javascripts/application.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
// about supported directives.
1212
//
1313
//= require rails-ujs
14-
//= require turbolinks
1514
//= require 'jquery'
1615
//= require_tree .
1716
//= require hyperloop-loader
18-
Opal.OpalHotReloader.$listen() // optional (port, false, poll_seconds) i.e. (8081, false, 1)
17+
Opal.OpalHotReloader.$listen(8081, false, 1) // optional (port, false, poll_seconds) i.e. (8081, false, 1)

0 commit comments

Comments
 (0)