adminlte-rails 1.3.2 → 1.3.3
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 +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +36 -3
- data/lib/adminlte-rails/engine.rb +2 -0
- data/lib/adminlte-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/iCheck/all.scss +6 -6
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f4ccdc61f653dfa1b4d5430d6188a4152cf7bf8
|
|
4
|
+
data.tar.gz: 5b5af0c401fb3ceb4bd9db2f55b5f64e115e74ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46f954dfc0ef50a94562e97b9dd90547b91b2c8b0b1c87c34e53ddfa99819b655943d24e4af5ab334864e80f03881e8c585cba168820aefd19753888162033fb
|
|
7
|
+
data.tar.gz: 27dd440eaab2a238d34b5494a6b0031418de9a7f1341be11f79658743d92bcf8b1bb9dc367274a073ef706e21c8d1b2829772c7b66ff031eea2b6b719c520922
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
## 1.3.2
|
|
2
|
+
|
|
3
|
+
Features:
|
|
4
|
+
|
|
5
|
+
- Precompile assets automatically.
|
|
6
|
+
|
|
7
|
+
## 1.3.1
|
|
8
|
+
|
|
9
|
+
Hotfix:
|
|
10
|
+
|
|
11
|
+
- Fix critical convert font-face bug.
|
|
12
|
+
|
|
13
|
+
## 1.3.0 (yanked)
|
|
14
|
+
|
|
15
|
+
Features:
|
|
16
|
+
|
|
17
|
+
- Updating tool pulls latest release from [AdminLTE](https://github.com/almasaeed2010/AdminLTE) `/lib/adminlte-rails/source_file.rb`.
|
|
18
|
+
- Support iCheck controls (only flat style) .
|
|
19
|
+
- Support datatables.
|
|
20
|
+
- Convert font-face urls for Rails assets pipeline.
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# AdminLTE Rails gem
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[AdminLTE](http://www.almsaeedstudio.com/) is a premium Bootstrap theme for backend.
|
|
4
|
+
|
|
5
|
+
The **AdminLTE Rails** gem integrates **AdminLTE** theme with the Rails asset pipeline.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -18,7 +20,38 @@ Or install it yourself as:
|
|
|
18
20
|
|
|
19
21
|
## Usage
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
### Include adminlte-rails javascript assets
|
|
24
|
+
|
|
25
|
+
Add the following to your `app/assets/javascripts/application.js`:
|
|
26
|
+
|
|
27
|
+
//= require bootstrap.min
|
|
28
|
+
//= require admin-lte
|
|
29
|
+
|
|
30
|
+
### Include adminlte-rails stylesheet assets
|
|
31
|
+
|
|
32
|
+
Add the following to your `app/assets/stylesheets/application.css`:
|
|
33
|
+
|
|
34
|
+
*= require bootstrap
|
|
35
|
+
*= require font-awesome
|
|
36
|
+
*= require ionicons
|
|
37
|
+
*= require admin-lte
|
|
38
|
+
|
|
39
|
+
If you want to use additional features, add more these lines to your `app/assets/stylesheets/application.css`:
|
|
40
|
+
|
|
41
|
+
*= require iCheck/all
|
|
42
|
+
*= require datatables/dataTables.bootstrap
|
|
43
|
+
|
|
44
|
+
## Version
|
|
45
|
+
|
|
46
|
+
1.3.2 (AdminLTE 1.3.0)
|
|
47
|
+
|
|
48
|
+
## Changelog
|
|
49
|
+
|
|
50
|
+
View [CHANGELOG](CHANGELOG.md)
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
AdminLTE-Rails is released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
|
22
55
|
|
|
23
56
|
## Contributing
|
|
24
57
|
|
|
@@ -3,6 +3,8 @@ module AdminLTE
|
|
|
3
3
|
class Engine < ::Rails::Engine
|
|
4
4
|
initializer :images do |app|
|
|
5
5
|
app.config.assets.precompile += %w( auth.css auth.js iCheck/flat/_all.css )
|
|
6
|
+
app.config.assets.precompile << /\.(?:svg|eot|woff|ttf)\z/
|
|
7
|
+
app.config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif)
|
|
6
8
|
end
|
|
7
9
|
end
|
|
8
10
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* iCheck plugin skins
|
|
2
2
|
----------------------------------- */
|
|
3
|
-
@import url("minimal/_all.css");
|
|
4
3
|
/*
|
|
4
|
+
@import url("minimal/_all.css");
|
|
5
5
|
@import url("minimal/minimal.css");
|
|
6
6
|
@import url("minimal/red.css");
|
|
7
7
|
@import url("minimal/green.css");
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
@import url("minimal/purple.css");
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
@import url("square/_all.css");
|
|
18
17
|
/*
|
|
18
|
+
@import url("square/_all.css");
|
|
19
19
|
@import url("square/square.css");
|
|
20
20
|
@import url("square/red.css");
|
|
21
21
|
@import url("square/green.css");
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
@import url("flat/purple.css");
|
|
43
43
|
*/
|
|
44
44
|
|
|
45
|
-
@import url("line/_all.css");
|
|
46
45
|
/*
|
|
46
|
+
@import url("line/_all.css");
|
|
47
47
|
@import url("line/line.css");
|
|
48
48
|
@import url("line/red.css");
|
|
49
49
|
@import url("line/green.css");
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
@import url("line/pink.css");
|
|
56
56
|
@import url("line/purple.css");
|
|
57
57
|
*/
|
|
58
|
-
|
|
58
|
+
/*
|
|
59
59
|
@import url("polaris/polaris.css");
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
@import url("futurico/futurico.css");
|
|
61
|
+
*/
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: adminlte-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nguyen Ba Dung
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -88,6 +88,7 @@ extensions: []
|
|
|
88
88
|
extra_rdoc_files: []
|
|
89
89
|
files:
|
|
90
90
|
- ".gitignore"
|
|
91
|
+
- CHANGELOG.md
|
|
91
92
|
- Gemfile
|
|
92
93
|
- LICENSE.txt
|
|
93
94
|
- README.md
|