nprogress-rails 0.1.2.1 → 0.1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +24 -1
- data/nprogress-rails.gemspec +1 -1
- data/vendor/assets/javascripts/nprogress-ajax.js +4 -0
- data/vendor/assets/javascripts/nprogress-pjax.js +4 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 278b552490c22b4aedee9ad61d9373d5c88d3c3e
|
4
|
+
data.tar.gz: d5b875c149435aa524431d9a0dcbe9c0521f3032
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60cf28239c7f4f11480a7f93a653a7aa481754d3d9ea2d41b83c91d71bdd576251e60e31e9afe92c0cce4c2550a94ac8e6d67990372563b5ae48413371ccce0f
|
7
|
+
data.tar.gz: b42fde331ad1ee0950a35021d5bec0e33174e9fef039601ff2a2851d345b9054ccc9ae45c893ff82c6d04d092494de99e8b82bced9b409c49fd536e1f1090cfc
|
data/README.md
CHANGED
@@ -36,7 +36,9 @@ In your `application.js.coffee` (or just JS):
|
|
36
36
|
#= require nprogress-turbolinks
|
37
37
|
```
|
38
38
|
|
39
|
-
The `nprogress-turbolinks` is required only if you use turbolinks.
|
39
|
+
The `nprogress-turbolinks` is required only if you use turbolinks. Using pjax
|
40
|
+
rather than turbolinks? Simply require `nprogress-pjax` instead. Want it also
|
41
|
+
for simple jQuery AJAX calls? Just require `nprogress-ajax`. Otherwise,
|
40
42
|
you will have to deal with show/hide the progress by your own.
|
41
43
|
|
42
44
|
Also, into your `application.css.scss` file:
|
@@ -50,6 +52,27 @@ The `nprogress-bootstrap` is required if you use bootstrap and have a fixed
|
|
50
52
|
toolbar or anything else. tl;dr: if the console shows no erros, but the
|
51
53
|
progress doesn't appear, try this.
|
52
54
|
|
55
|
+
## Customization
|
56
|
+
|
57
|
+
You can use any of the configurations described in the [readme](https://github.com/rstacruz/nprogress#configuration)
|
58
|
+
with this lib. I just recommend you to do so ASAP, for example, just after
|
59
|
+
the `nprogress-rails` require:
|
60
|
+
|
61
|
+
```coffeescript
|
62
|
+
# this is the application.js.coffee file:
|
63
|
+
|
64
|
+
#= require jquery
|
65
|
+
#= require jquery_ujs
|
66
|
+
#= require turbolinks
|
67
|
+
#= require nprogress
|
68
|
+
#= require nprogress-turbolinks
|
69
|
+
|
70
|
+
NProgress.configure
|
71
|
+
showSpinner: false
|
72
|
+
ease: 'ease'
|
73
|
+
speed: 500
|
74
|
+
```
|
75
|
+
|
53
76
|
|
54
77
|
## Contributing
|
55
78
|
|
data/nprogress-rails.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "nprogress-rails"
|
7
|
-
spec.version = "0.1.2.
|
7
|
+
spec.version = "0.1.2.2"
|
8
8
|
spec.authors = ["Carlos Alexandro Becker"]
|
9
9
|
spec.email = ["caarlos0@gmail.com"]
|
10
10
|
spec.description = %q{This is a gem for the rstacruz' nprogress implementation. It's based on version nprogress 0.1.2.}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nprogress-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.2.
|
4
|
+
version: 0.1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carlos Alexandro Becker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -53,6 +53,8 @@ files:
|
|
53
53
|
- Rakefile
|
54
54
|
- lib/nprogress-rails.rb
|
55
55
|
- nprogress-rails.gemspec
|
56
|
+
- vendor/assets/javascripts/nprogress-ajax.js
|
57
|
+
- vendor/assets/javascripts/nprogress-pjax.js
|
56
58
|
- vendor/assets/javascripts/nprogress-turbolinks.js
|
57
59
|
- vendor/assets/javascripts/nprogress.js
|
58
60
|
- vendor/assets/stylesheets/nprogress-bootstrap.css
|
@@ -77,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
79
|
version: '0'
|
78
80
|
requirements: []
|
79
81
|
rubyforge_project:
|
80
|
-
rubygems_version: 2.0.
|
82
|
+
rubygems_version: 2.0.2
|
81
83
|
signing_key:
|
82
84
|
specification_version: 4
|
83
85
|
summary: Slim progress bars for Ajax'y applications. Inspired by Google, YouTube,
|