minicron 0.7.5 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/minicron/constants.rb +1 -1
- data/lib/minicron/hub/assets/app/application.js +1 -1
- data/spec/minicron_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e56bf6a4890ec60c50ff3843130e356c62a4205
|
4
|
+
data.tar.gz: a99ba6773693386d61f30607f2198af48704ac38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5bd6f87272cd992a266bcee8b13b12cb7152f45a2ff93d9a4c32c3dd97e38e3baccd68cc107b4aa4748a8b9eeb86dd6c419a1ad6527de8819d7375535715e20
|
7
|
+
data.tar.gz: cf7f3861b4efff02d9eb7e67ded6c3f1f34702825cdfe3f27c34306bc87fd63c302756e5b7839f66be30e4df76de4bd19057927425553f3073ef55ec9e00101f
|
data/README.md
CHANGED
@@ -107,7 +107,7 @@ but I encourage you to give it a try in a non critical environment and help me t
|
|
107
107
|
|
108
108
|
2. On some distributions you may need to install the ````ruby-dev```` and ````build-essential```` packages
|
109
109
|
|
110
|
-
3. To install the latest release (currently 0.7.
|
110
|
+
3. To install the latest release (currently 0.7.6) you can ````gem install minicron````, depending on your ruby setup
|
111
111
|
you may need to run this with ````sudo````
|
112
112
|
|
113
113
|
4. Set your database configuration options in ````/etc/minicron.toml````, you can use the [minicron.toml](https://github.com/jamesrwhite/minicron/blob/master/config/minicron.toml) as a guide on what options are configurable
|
data/lib/minicron/constants.rb
CHANGED
@@ -83,7 +83,7 @@
|
|
83
83
|
this._super(controller, model);
|
84
84
|
},
|
85
85
|
afterModel: function(model, transition) {
|
86
|
-
var client = new Faye.Client(window.location.protocol + '//' + window.location.host + window.config.path + '/faye'),
|
86
|
+
var client = new Faye.Client(window.location.protocol + '//' + window.location.host + (window.config.path === '/' ? '/faye' : window.config.path + '/faye')),
|
87
87
|
store = model.store,
|
88
88
|
self = this;
|
89
89
|
window.store = store;
|
data/spec/minicron_spec.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minicron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James White
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rainbow
|