lte-rails 0.0.1 → 0.0.2
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/Gemfile.lock +1 -1
- data/README.md +22 -3
- data/Rakefile +10 -4
- data/lib/lte/rails/version.rb +1 -1
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-black-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-black.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-blue-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-blue.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-green-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-green.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-purple-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-purple.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-red-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-red.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-yellow-light.less +2 -2
- data/vendor/assets/stylesheets/AdminLTE/skins/skin-yellow.less +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3bd9484610267c46182efeaf188f33fd23bbde4
|
4
|
+
data.tar.gz: f7bdd748ffa8992b8ba70a2ed3d91f73d8ced316
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b28771733ba6d6d549aa0c0c27738cb85084a719a91eaaa5cc396bb530fee955715705c56f23d88e6d57adb898cfd1c54ec4d7e95f805240c1affee860ba2d47
|
7
|
+
data.tar.gz: 5fac8944a54341f4c74b394350e6cb84c582def410c0999412ad4f75151096ca05578e33edafd8d5e480b5b93ba5b4c08bdf95fc6368c107d3540880c61d5984
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,23 @@
|
|
1
|
-
#
|
2
|
-
Admin LTE gem for use in Rails
|
1
|
+
# AdminLTE gem for Rails
|
3
2
|
|
4
|
-
|
3
|
+
This is a gem for using the [AdminLTE](https://github.com/almasaeed2010/AdminLTE/issues) template within a Rails project.
|
4
|
+
|
5
|
+
This gem is currently using AvminLTE v2.3.0.
|
6
|
+
|
7
|
+
To use, add this to your Gemfile:
|
8
|
+
```
|
9
|
+
gem 'lte-rails'
|
10
|
+
```
|
11
|
+
|
12
|
+
and add this (changing the skin name to anything you want or adding more) to your application.css:
|
13
|
+
|
14
|
+
```
|
15
|
+
*= require lte-rails
|
16
|
+
*= require AdminLTE/skins/skin-blue
|
17
|
+
```
|
18
|
+
|
19
|
+
# Notes
|
20
|
+
|
21
|
+
This gem uses the main AdminLTE github repo to re-generate the gem from them by dynamically patching so that the assets work properly within the Rails environment.
|
22
|
+
|
23
|
+
This gem is not supporting the Javascript parts, yet.
|
data/Rakefile
CHANGED
@@ -9,6 +9,12 @@ Bundler::GemHelper.install_tasks
|
|
9
9
|
TARGET_DIR = 'vendor/assets/stylesheets'
|
10
10
|
FULL_DIR = File.join(TARGET_DIR, "AdminLTE")
|
11
11
|
|
12
|
+
def replace_in_file(filename, source, replacement)
|
13
|
+
text = File.read(filename)
|
14
|
+
repl = text.gsub(source, replacement)
|
15
|
+
File.open(filename, 'w') { |f| f << repl }
|
16
|
+
end
|
17
|
+
|
12
18
|
desc "Bundle the gem"
|
13
19
|
task :bundle => [:bundle_install, :build_files] do
|
14
20
|
sh 'gem build *.gemspec'
|
@@ -36,10 +42,10 @@ task :build_files => [:clean] do
|
|
36
42
|
FileUtils.cp_r "AdminLTE/build/less/", TARGET_DIR, preserve: true
|
37
43
|
Dir.chdir TARGET_DIR do
|
38
44
|
FileUtils.mv 'less', "AdminLTE"
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
45
|
+
replace_in_file("AdminLTE/AdminLTE.less", /\.\.\/bootstrap-less\//, 'twitter/bootstrap/')
|
46
|
+
Dir.glob("AdminLTE/skins/*.less").each do |f|
|
47
|
+
replace_in_file(f, /\.\.\/\.\.\/bootstrap-less\//, 'twitter/bootstrap/')
|
48
|
+
end
|
43
49
|
end
|
44
50
|
end
|
45
51
|
|
data/lib/lte/rails/version.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
* Skin: Black
|
3
3
|
* -----------
|
4
4
|
*/
|
5
|
-
@import "
|
6
|
-
@import "
|
5
|
+
@import "twitter/bootstrap/mixins.less";
|
6
|
+
@import "twitter/bootstrap/variables.less";
|
7
7
|
@import "../variables.less";
|
8
8
|
@import "../mixins.less";
|
9
9
|
|
@@ -2,8 +2,8 @@
|
|
2
2
|
* Skin: Black
|
3
3
|
* -----------
|
4
4
|
*/
|
5
|
-
@import "
|
6
|
-
@import "
|
5
|
+
@import "twitter/bootstrap/mixins.less";
|
6
|
+
@import "twitter/bootstrap/variables.less";
|
7
7
|
@import "../variables.less";
|
8
8
|
@import "../mixins.less";
|
9
9
|
|
@@ -2,8 +2,8 @@
|
|
2
2
|
* Skin: Blue
|
3
3
|
* ----------
|
4
4
|
*/
|
5
|
-
@import "
|
6
|
-
@import "
|
5
|
+
@import "twitter/bootstrap/mixins.less";
|
6
|
+
@import "twitter/bootstrap/variables.less";
|
7
7
|
@import "../variables.less";
|
8
8
|
@import "../mixins.less";
|
9
9
|
|
@@ -2,8 +2,8 @@
|
|
2
2
|
* Skin: Blue
|
3
3
|
* ----------
|
4
4
|
*/
|
5
|
-
@import "
|
6
|
-
@import "
|
5
|
+
@import "twitter/bootstrap/mixins.less";
|
6
|
+
@import "twitter/bootstrap/variables.less";
|
7
7
|
@import "../variables.less";
|
8
8
|
@import "../mixins.less";
|
9
9
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* -----------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* -----------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ------------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ------------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ---------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ---------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ------------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
* ------------
|
4
4
|
*/
|
5
5
|
|
6
|
-
@import "
|
7
|
-
@import "
|
6
|
+
@import "twitter/bootstrap/mixins.less";
|
7
|
+
@import "twitter/bootstrap/variables.less";
|
8
8
|
@import "../variables.less";
|
9
9
|
@import "../mixins.less";
|
10
10
|
|