Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 2243149

Browse files
committed
bump next version
1 parent a904ae1 commit 2243149

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

nprogress-rails.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44

55
Gem::Specification.new do |spec|
66
spec.name = "nprogress-rails"
7-
spec.version = "0.1.1.2"
7+
spec.version = "0.1.2.1"
88
spec.authors = ["Carlos Alexandro Becker"]
99
spec.email = ["caarlos0@gmail.com"]
10-
spec.description = %q{This is a gem for the rstacruz' nprogress implementation. It's based on version nprogress 0.1.1.}
10+
spec.description = %q{This is a gem for the rstacruz' nprogress implementation. It's based on version nprogress 0.1.2.}
1111
spec.summary = %q{Slim progress bars for Ajax'y applications. Inspired by Google, YouTube, and Medium.}
1212
spec.homepage = "https://github.com/caarlos0/nprogress-rails"
1313
spec.license = "MIT"

vendor/assets/javascripts/nprogress.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
;(function(factory) {
55

6-
if (typeof module === 'object') {
7-
module.exports = factory(this.jQuery || require('dom'));
6+
if (typeof module === 'function') {
7+
module.exports = factory(this.jQuery || require('jquery'));
88
} else {
99
this.NProgress = factory(this.jQuery);
1010
}
1111

1212
})(function($) {
1313
var NProgress = {};
1414

15-
NProgress.version = '0.1.1';
15+
NProgress.version = '0.1.2';
1616

1717
var Settings = NProgress.settings = {
1818
minimum: 0.08,

0 commit comments

Comments
 (0)