bootstrap-datepicker 1.1.1 → 1.2.0
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.
- data/.gitignore +2 -1
- data/bower.json +1 -1
- data/compass/stylesheets/bootstrap-datepicker.scss +1 -0
- data/lib/bootstrap-datepicker.rb +4 -2
- data/lib/bootstrap-datepicker/version.rb +1 -1
- data/package.json +1 -1
- metadata +4 -3
data/.gitignore
CHANGED
data/bower.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "../../sass/datepicker.scss";
|
data/lib/bootstrap-datepicker.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require "bootstrap
|
|
1
|
+
require "bootstrap-datepicker/version"
|
|
2
2
|
|
|
3
3
|
module Bootstrap
|
|
4
4
|
module Datepicker
|
|
@@ -8,4 +8,6 @@ module Bootstrap
|
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
require "bootstrap-sass"
|
|
12
|
+
|
|
13
|
+
Compass::Frameworks.register 'bootstrap-datepicker', :path => Bootstrap::Datepicker.base_directory
|
|
@@ -2,7 +2,7 @@ module Bootstrap
|
|
|
2
2
|
module Datepicker
|
|
3
3
|
# This is updated via the `grunt bump` command, which has a pretty
|
|
4
4
|
# unflexible matching syntax.
|
|
5
|
-
VERSION_STRING = "'version': '1.
|
|
5
|
+
VERSION_STRING = "'version': '1.2.0'"
|
|
6
6
|
# Then, just the version.
|
|
7
7
|
VERSION = VERSION_STRING.match(/\d+\.\d+\.\d+/)[0]
|
|
8
8
|
end
|
data/package.json
CHANGED
metadata
CHANGED
|
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
version: 1.
|
|
7
|
+
- 2
|
|
8
|
+
- 0
|
|
9
|
+
version: 1.2.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Michael Hellein
|
|
@@ -95,6 +95,7 @@ files:
|
|
|
95
95
|
- build/build3.less
|
|
96
96
|
- build/build_standalone.less
|
|
97
97
|
- build/build_standalone3.less
|
|
98
|
+
- compass/stylesheets/bootstrap-datepicker.scss
|
|
98
99
|
- composer.json
|
|
99
100
|
- css/datepicker.css
|
|
100
101
|
- css/datepicker3.css
|