bootstrap-multiselect-rails 0.0.8 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 545a615322d0db3db2b6ff2f8cb5171c121c78ab
4
- data.tar.gz: 324fac477d48008bb2c92f1be3702f8d85f842a6
3
+ metadata.gz: 7c8445c9560b793ddd0c4ecccfd6ae3392a3710d
4
+ data.tar.gz: 171493dbfe329e6a632a9be0fb1be3e71a44dc70
5
5
  SHA512:
6
- metadata.gz: fd8196e45f2c00ab65efec8f11077146fe5e56e9e121f4f505c559fe4f1a0d7b13ffe701ed907c7386473d5c4d220c937639a6c05e3bbff0b96ff2f0234a46f6
7
- data.tar.gz: b7edd0ea0073e7fdd24eb39231f86920ff5f8aab48c4a7f40b11a6ca47a32a11040d0d0b3e60539f2e5b08e2a7d945895f2e23e111e3565b150ff649f583c98c
6
+ metadata.gz: 0af588b33a50d95ac73f4a24e428c8bd3a8ae05473f4536392594f99f9e5b290cf8324a832bb9eeb5d65862e40a258ef5dd83b4b9e9963cb8f805600cf584278
7
+ data.tar.gz: c08cf1eb7938a0bbee7e5043df726e9d33b989fbb016e502a44d2c2c6301ecbbcd4dfdbcd22446104839f859227df76085793d0cb725f9abedb385e3d55071b9
@@ -0,0 +1,8 @@
1
+ require 'bootstrap-multiselect-rails/version'
2
+
3
+ module BootstrapMultiselect
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module BootstrapMultiselect
2
+ module Rails
3
+ VERSION = '0.9.5'
4
+ end
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-multiselect-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Canac
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: Add Bootstrap Multiselect to your rails app. See https://github.com/davidstutz/bootstrap-multiselect
55
+ description: Add Bootstrap Multiselect v0.9.5 to your rails app. See https://github.com/davidstutz/bootstrap-multiselect
56
56
  for more information about bootstrap-multiselect.
57
57
  email:
58
58
  - canacb1@gmail.com
@@ -60,8 +60,8 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - lib/bootstrap/multiselect/rails/version.rb
64
- - lib/rails.rb
63
+ - lib/bootstrap-multiselect-rails/version.rb
64
+ - lib/bootstrap-multiselect-rails.rb
65
65
  - vendor/assets/javascripts/bootstrap-multiselect.js
66
66
  - vendor/assets/stylesheets/bootstrap-multiselect.css
67
67
  - MIT-LICENSE
@@ -90,5 +90,5 @@ rubyforge_project:
90
90
  rubygems_version: 2.0.6
91
91
  signing_key:
92
92
  specification_version: 4
93
- summary: Add Bootstrap Multiselect to your rails app.
93
+ summary: Add Bootstrap Multiselect v0.9.5 to your rails app.
94
94
  test_files: []
@@ -1,7 +0,0 @@
1
- module Bootstrap
2
- module Multiselect
3
- module Rails
4
- VERSION = "0.0.8"
5
- end
6
- end
7
- end
@@ -1,10 +0,0 @@
1
- require "bootstrap/multiselect/rails/version"
2
-
3
- module Bootstrap
4
- module Multiselect
5
- module Rails
6
- class Engine < Rails::Engine
7
- end
8
- end
9
- end
10
- end