Skip to content

Commit

Permalink
bump next version
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Aug 21, 2013
1 parent a904ae1 commit 2243149
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nprogress-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = "nprogress-rails"
spec.version = "0.1.1.2"
spec.version = "0.1.2.1"
spec.authors = ["Carlos Alexandro Becker"]
spec.email = ["[email protected]"]
spec.description = %q{This is a gem for the rstacruz' nprogress implementation. It's based on version nprogress 0.1.1.}
spec.description = %q{This is a gem for the rstacruz' nprogress implementation. It's based on version nprogress 0.1.2.}
spec.summary = %q{Slim progress bars for Ajax'y applications. Inspired by Google, YouTube, and Medium.}
spec.homepage = "https://github.com/caarlos0/nprogress-rails"
spec.license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions vendor/assets/javascripts/nprogress.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

;(function(factory) {

if (typeof module === 'object') {
module.exports = factory(this.jQuery || require('dom'));
if (typeof module === 'function') {
module.exports = factory(this.jQuery || require('jquery'));
} else {
this.NProgress = factory(this.jQuery);
}

})(function($) {
var NProgress = {};

NProgress.version = '0.1.1';
NProgress.version = '0.1.2';

var Settings = NProgress.settings = {
minimum: 0.08,
Expand Down

0 comments on commit 2243149

Please sign in to comment.