adminlte-rails4 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/CHANGELOG.md +20 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +62 -0
  7. data/Rakefile +15 -0
  8. data/adminlte-rails.gemspec +21 -0
  9. data/app/assets/fonts/FontAwesome.otf +0 -0
  10. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.svg +414 -0
  12. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  13. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  14. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  15. data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  18. data/app/assets/fonts/ionicons.eot +0 -0
  19. data/app/assets/fonts/ionicons.svg +1623 -0
  20. data/app/assets/fonts/ionicons.ttf +0 -0
  21. data/app/assets/fonts/ionicons.woff +0 -0
  22. data/app/assets/images/avatar.png +0 -0
  23. data/app/assets/images/avatar2.png +0 -0
  24. data/app/assets/images/avatar3.png +0 -0
  25. data/app/assets/javascripts/admin-lte.js +1054 -0
  26. data/app/assets/javascripts/bootstrap.min.js +7 -0
  27. data/app/assets/stylesheets/admin-lte.css +3535 -0
  28. data/app/assets/stylesheets/bootstrap.scss +7118 -0
  29. data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +223 -0
  30. data/app/assets/stylesheets/datatables/images/sort_asc.png +0 -0
  31. data/app/assets/stylesheets/datatables/images/sort_asc_disabled.png +0 -0
  32. data/app/assets/stylesheets/datatables/images/sort_both.png +0 -0
  33. data/app/assets/stylesheets/datatables/images/sort_desc.png +0 -0
  34. data/app/assets/stylesheets/datatables/images/sort_desc_disabled.png +0 -0
  35. data/app/assets/stylesheets/font-awesome.scss +1338 -0
  36. data/app/assets/stylesheets/iCheck/all.scss +61 -0
  37. data/app/assets/stylesheets/iCheck/flat/_all.css +560 -0
  38. data/app/assets/stylesheets/iCheck/flat/aero.css +56 -0
  39. data/app/assets/stylesheets/iCheck/flat/aero.png +0 -0
  40. data/app/assets/stylesheets/iCheck/flat/aero@2x.png +0 -0
  41. data/app/assets/stylesheets/iCheck/flat/blue.css +56 -0
  42. data/app/assets/stylesheets/iCheck/flat/blue.png +0 -0
  43. data/app/assets/stylesheets/iCheck/flat/blue@2x.png +0 -0
  44. data/app/assets/stylesheets/iCheck/flat/flat.css +56 -0
  45. data/app/assets/stylesheets/iCheck/flat/flat.png +0 -0
  46. data/app/assets/stylesheets/iCheck/flat/flat@2x.png +0 -0
  47. data/app/assets/stylesheets/iCheck/flat/green.css +56 -0
  48. data/app/assets/stylesheets/iCheck/flat/green.png +0 -0
  49. data/app/assets/stylesheets/iCheck/flat/green@2x.png +0 -0
  50. data/app/assets/stylesheets/iCheck/flat/grey.css +56 -0
  51. data/app/assets/stylesheets/iCheck/flat/grey.png +0 -0
  52. data/app/assets/stylesheets/iCheck/flat/grey@2x.png +0 -0
  53. data/app/assets/stylesheets/iCheck/flat/orange.css +56 -0
  54. data/app/assets/stylesheets/iCheck/flat/orange.png +0 -0
  55. data/app/assets/stylesheets/iCheck/flat/orange@2x.png +0 -0
  56. data/app/assets/stylesheets/iCheck/flat/pink.css +56 -0
  57. data/app/assets/stylesheets/iCheck/flat/pink.png +0 -0
  58. data/app/assets/stylesheets/iCheck/flat/pink@2x.png +0 -0
  59. data/app/assets/stylesheets/iCheck/flat/purple.css +56 -0
  60. data/app/assets/stylesheets/iCheck/flat/purple.png +0 -0
  61. data/app/assets/stylesheets/iCheck/flat/purple@2x.png +0 -0
  62. data/app/assets/stylesheets/iCheck/flat/red.css +56 -0
  63. data/app/assets/stylesheets/iCheck/flat/red.png +0 -0
  64. data/app/assets/stylesheets/iCheck/flat/red@2x.png +0 -0
  65. data/app/assets/stylesheets/iCheck/flat/yellow.css +56 -0
  66. data/app/assets/stylesheets/iCheck/flat/yellow.png +0 -0
  67. data/app/assets/stylesheets/iCheck/flat/yellow@2x.png +0 -0
  68. data/app/assets/stylesheets/ionicons.scss +2183 -0
  69. data/lib/adminlte-rails/engine.rb +9 -0
  70. data/lib/adminlte-rails/source_file.rb +146 -0
  71. data/lib/adminlte-rails/version.rb +5 -0
  72. data/lib/adminlte-rails.rb +6 -0
  73. metadata +185 -0
@@ -0,0 +1,9 @@
1
+ module AdminLTE
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ initializer :images do |app|
5
+ app.config.assets.precompile += %w( auth.css auth.js iCheck/flat/_all.css )
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,146 @@
1
+ require 'thor'
2
+ require 'json'
3
+ require 'httpclient'
4
+ require 'byebug'
5
+ require 'fileutils'
6
+ class SourceFile < Thor
7
+ include Thor::Actions
8
+
9
+ desc 'clean up assets folders', ' delete fonts, stylesheets, javascripts, images'
10
+
11
+ def cleanup
12
+ FileUtils.rm_rf %w(vendor/assets/fonts vendor/assets/images vendor/assets/stylesheets vendor/assets/javascripts)
13
+ end
14
+
15
+ desc 'fetch source files', 'fetch source files from GitHub'
16
+
17
+ def fetch
18
+ filtered_tags = fetch_tags
19
+ tag = select('Which tag do you want to fetch?', filtered_tags)
20
+ self.destination_root = 'vendor/assets'
21
+ remote = 'https://github.com/almasaeed2010/AdminLTE'
22
+
23
+ # Fetch javascripts
24
+ fetch_javascripts(remote, tag)
25
+
26
+ # Fetch fonts
27
+ fetch_fonts(remote, tag)
28
+
29
+ # Fetch stylesheets
30
+ fetch_stylesheets(remote, tag)
31
+
32
+ # Fetch images
33
+ fetch_images(remote, tag)
34
+
35
+ end
36
+
37
+ desc 'convert css to use rails paths', 'make css use rails paths'
38
+
39
+ def convert
40
+ self.destination_root = 'vendor/assets'
41
+ inside destination_root do
42
+ #gsub_file 'stylesheets/bootstrap.scss', %r/url\(([^\)]*)\)/, 'image-url(\1)'
43
+ gsub_file 'stylesheets/bootstrap.scss', %r/url\('(\.\.\/fonts\/)([^\)]*)'\)/, 'url(font-path(\'\2\'))'
44
+ gsub_file 'stylesheets/font-awesome.scss', %r/url\('(\.\.\/fonts\/)([^\)]*)'\)/, 'url(font-path(\'\2\'))'
45
+ gsub_file 'stylesheets/ionicons.scss', %r/url\("(\.\.\/fonts\/)([^\)]*)"\)/, 'url(font-path(\'\2\'))'
46
+ end
47
+ end
48
+
49
+ private
50
+ def fetch_tags
51
+ http = HTTPClient.new
52
+ response = JSON.parse(http.get('https://api.github.com/repos/almasaeed2010/AdminLTE/tags').body)
53
+ response.map { |tag| tag['name'] }.sort
54
+ end
55
+
56
+ def select(msg, elements)
57
+ elements.each_with_index do |element, index|
58
+ say(block_given? ? yield(element, index + 1) : ("#{index + 1}. #{element.to_s}"))
59
+ end
60
+ result = ask(msg).to_i
61
+ elements[result - 1]
62
+ end
63
+
64
+ def fetch_javascripts(remote, tag)
65
+ js_path = "#{remote}/raw/#{tag}/js"
66
+ get "#{js_path}/bootstrap.min.js", 'javascripts/bootstrap.min.js'
67
+ get "#{js_path}/AdminLTE/app.js", 'javascripts/admin-lte.js'
68
+ end
69
+
70
+ def fetch_fonts(remote, tag)
71
+ fonts_path = "#{remote}/raw/#{tag}/fonts"
72
+ get "#{fonts_path}/FontAwesome.otf", 'fonts/FontAwesome.otf'
73
+ get "#{fonts_path}/fontawesome-webfont.eot", 'fonts/fontawesome-webfont.eot'
74
+ get "#{fonts_path}/fontawesome-webfont.svg", 'fonts/fontawesome-webfont.svg'
75
+ get "#{fonts_path}/fontawesome-webfont.ttf", 'fonts/fontawesome-webfont.ttf'
76
+ get "#{fonts_path}/fontawesome-webfont.woff", 'fonts/fontawesome-webfont.woff'
77
+ get "#{fonts_path}/glyphicons-halflings-regular.eot", 'fonts/glyphicons-halflings-regular.eot'
78
+ get "#{fonts_path}/glyphicons-halflings-regular.svg", 'fonts/glyphicons-halflings-regular.svg'
79
+ get "#{fonts_path}/glyphicons-halflings-regular.ttf", 'fonts/glyphicons-halflings-regular.ttf'
80
+ get "#{fonts_path}/glyphicons-halflings-regular.woff", 'fonts/glyphicons-halflings-regular.woff'
81
+ get "#{fonts_path}/ionicons.eot", 'fonts/ionicons.eot'
82
+ get "#{fonts_path}/ionicons.svg", 'fonts/ionicons.svg'
83
+ get "#{fonts_path}/ionicons.ttf", 'fonts/ionicons.ttf'
84
+ get "#{fonts_path}/ionicons.woff", 'fonts/ionicons.woff'
85
+ end
86
+
87
+ def fetch_images(remote, tag)
88
+ images_path = "#{remote}/raw/#{tag}/img"
89
+ get "#{images_path}/avatar.png", 'images/avatar.png'
90
+ get "#{images_path}/avatar2.png", 'images/avatar2.png'
91
+ get "#{images_path}/avatar3.png", 'images/avatar3.png'
92
+ end
93
+
94
+ def fetch_stylesheets(remote, tag)
95
+ # Get Css files
96
+ css_path = "#{remote}/raw/#{tag}/css"
97
+ get "#{css_path}/bootstrap.css", 'stylesheets/bootstrap.scss'
98
+ get "#{css_path}/AdminLTE.css", 'stylesheets/admin-lte.css'
99
+ get "#{css_path}/ionicons.css", 'stylesheets/ionicons.scss'
100
+ get "#{css_path}/font-awesome.css", 'stylesheets/font-awesome.scss'
101
+
102
+ # Get DataTables assets
103
+ get "#{css_path}/datatables/images/sort_asc.png", 'stylesheets/datatables/images/sort_asc.png'
104
+ get "#{css_path}/datatables/images/sort_asc_disabled.png", 'stylesheets/datatables/images/sort_asc_disabled.png'
105
+ get "#{css_path}/datatables/images/sort_both.png", 'stylesheets/datatables/images/sort_both.png'
106
+ get "#{css_path}/datatables/images/sort_desc.png", 'stylesheets/datatables/images/sort_desc.png'
107
+ get "#{css_path}/datatables/images/sort_desc_disabled.png", 'stylesheets/datatables/images/sort_desc_disabled.png'
108
+ get "#{css_path}/datatables/dataTables.bootstrap.css", 'stylesheets/datatables/dataTables.bootstrap.css'
109
+
110
+ # Get iCheck assets
111
+ icheck_path = "#{css_path}/iCheck"
112
+ get "#{icheck_path}/all.css", 'stylesheets/iCheck/all.scss'
113
+ get "#{icheck_path}/flat/_all.css", 'stylesheets/iCheck/flat/_all.css'
114
+ get "#{icheck_path}/flat/aero.css", 'stylesheets/iCheck/flat/aero.css'
115
+ get "#{icheck_path}/flat/aero.png", 'stylesheets/iCheck/flat/aero.png'
116
+ get "#{icheck_path}/flat/aero@2x.png", 'stylesheets/iCheck/flat/aero@2x.png'
117
+ get "#{icheck_path}/flat/blue.css", 'stylesheets/iCheck/flat/blue.css'
118
+ get "#{icheck_path}/flat/blue.png", 'stylesheets/iCheck/flat/blue.png'
119
+ get "#{icheck_path}/flat/blue@2x.png", 'stylesheets/iCheck/flat/blue@2x.png'
120
+ get "#{icheck_path}/flat/flat.css", 'stylesheets/iCheck/flat/flat.css'
121
+ get "#{icheck_path}/flat/flat.png", 'stylesheets/iCheck/flat/flat.png'
122
+ get "#{icheck_path}/flat/flat@2x.png", 'stylesheets/iCheck/flat/flat@2x.png'
123
+ get "#{icheck_path}/flat/green.css", 'stylesheets/iCheck/flat/green.css'
124
+ get "#{icheck_path}/flat/green.png", 'stylesheets/iCheck/flat/green.png'
125
+ get "#{icheck_path}/flat/green@2x.png", 'stylesheets/iCheck/flat/green@2x.png'
126
+ get "#{icheck_path}/flat/grey.css", 'stylesheets/iCheck/flat/grey.css'
127
+ get "#{icheck_path}/flat/grey.png", 'stylesheets/iCheck/flat/grey.png'
128
+ get "#{icheck_path}/flat/grey@2x.png", 'stylesheets/iCheck/flat/grey@2x.png'
129
+ get "#{icheck_path}/flat/orange.css", 'stylesheets/iCheck/flat/orange.css'
130
+ get "#{icheck_path}/flat/orange.png", 'stylesheets/iCheck/flat/orange.png'
131
+ get "#{icheck_path}/flat/orange@2x.png", 'stylesheets/iCheck/flat/orange@2x.png'
132
+ get "#{icheck_path}/flat/pink.css", 'stylesheets/iCheck/flat/pink.css'
133
+ get "#{icheck_path}/flat/pink.png", 'stylesheets/iCheck/flat/pink.png'
134
+ get "#{icheck_path}/flat/pink@2x.png", 'stylesheets/iCheck/flat/pink@2x.png'
135
+ get "#{icheck_path}/flat/purple.css", 'stylesheets/iCheck/flat/purple.css'
136
+ get "#{icheck_path}/flat/purple.png", 'stylesheets/iCheck/flat/purple.png'
137
+ get "#{icheck_path}/flat/purple@2x.png", 'stylesheets/iCheck/flat/purple@2x.png'
138
+ get "#{icheck_path}/flat/red.css", 'stylesheets/iCheck/flat/red.css'
139
+ get "#{icheck_path}/flat/red.png", 'stylesheets/iCheck/flat/red.png'
140
+ get "#{icheck_path}/flat/red@2x.png", 'stylesheets/iCheck/flat/red@2x.png'
141
+ get "#{icheck_path}/flat/yellow.css", 'stylesheets/iCheck/flat/yellow.css'
142
+ get "#{icheck_path}/flat/yellow.png", 'stylesheets/iCheck/flat/yellow.png'
143
+ get "#{icheck_path}/flat/yellow@2x.png", 'stylesheets/iCheck/flat/yellow@2x.png'
144
+
145
+ end
146
+ end
@@ -0,0 +1,5 @@
1
+ module AdminLTE
2
+ module Rails
3
+ VERSION = '1.3.2'
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ require 'adminlte-rails/version'
2
+ module AdminLTE
3
+ module Rails
4
+ require 'adminlte-rails/engine'
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,185 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: adminlte-rails4
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.2
5
+ platform: ruby
6
+ authors:
7
+ - Nguyen Ba Dung
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '0.14'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '0.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: httpclient
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '2.2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '2.2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: byebug
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: AdminLTE is a premium Bootstrap theme for Backend.
84
+ email:
85
+ - nguyenbadung@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - .gitignore
91
+ - CHANGELOG.md
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - adminlte-rails.gemspec
97
+ - app/assets/fonts/FontAwesome.otf
98
+ - app/assets/fonts/fontawesome-webfont.eot
99
+ - app/assets/fonts/fontawesome-webfont.svg
100
+ - app/assets/fonts/fontawesome-webfont.ttf
101
+ - app/assets/fonts/fontawesome-webfont.woff
102
+ - app/assets/fonts/glyphicons-halflings-regular.eot
103
+ - app/assets/fonts/glyphicons-halflings-regular.svg
104
+ - app/assets/fonts/glyphicons-halflings-regular.ttf
105
+ - app/assets/fonts/glyphicons-halflings-regular.woff
106
+ - app/assets/fonts/ionicons.eot
107
+ - app/assets/fonts/ionicons.svg
108
+ - app/assets/fonts/ionicons.ttf
109
+ - app/assets/fonts/ionicons.woff
110
+ - app/assets/images/avatar.png
111
+ - app/assets/images/avatar2.png
112
+ - app/assets/images/avatar3.png
113
+ - app/assets/javascripts/admin-lte.js
114
+ - app/assets/javascripts/bootstrap.min.js
115
+ - app/assets/stylesheets/admin-lte.css
116
+ - app/assets/stylesheets/bootstrap.scss
117
+ - app/assets/stylesheets/datatables/dataTables.bootstrap.css
118
+ - app/assets/stylesheets/datatables/images/sort_asc.png
119
+ - app/assets/stylesheets/datatables/images/sort_asc_disabled.png
120
+ - app/assets/stylesheets/datatables/images/sort_both.png
121
+ - app/assets/stylesheets/datatables/images/sort_desc.png
122
+ - app/assets/stylesheets/datatables/images/sort_desc_disabled.png
123
+ - app/assets/stylesheets/font-awesome.scss
124
+ - app/assets/stylesheets/iCheck/all.scss
125
+ - app/assets/stylesheets/iCheck/flat/_all.css
126
+ - app/assets/stylesheets/iCheck/flat/aero.css
127
+ - app/assets/stylesheets/iCheck/flat/aero.png
128
+ - app/assets/stylesheets/iCheck/flat/aero@2x.png
129
+ - app/assets/stylesheets/iCheck/flat/blue.css
130
+ - app/assets/stylesheets/iCheck/flat/blue.png
131
+ - app/assets/stylesheets/iCheck/flat/blue@2x.png
132
+ - app/assets/stylesheets/iCheck/flat/flat.css
133
+ - app/assets/stylesheets/iCheck/flat/flat.png
134
+ - app/assets/stylesheets/iCheck/flat/flat@2x.png
135
+ - app/assets/stylesheets/iCheck/flat/green.css
136
+ - app/assets/stylesheets/iCheck/flat/green.png
137
+ - app/assets/stylesheets/iCheck/flat/green@2x.png
138
+ - app/assets/stylesheets/iCheck/flat/grey.css
139
+ - app/assets/stylesheets/iCheck/flat/grey.png
140
+ - app/assets/stylesheets/iCheck/flat/grey@2x.png
141
+ - app/assets/stylesheets/iCheck/flat/orange.css
142
+ - app/assets/stylesheets/iCheck/flat/orange.png
143
+ - app/assets/stylesheets/iCheck/flat/orange@2x.png
144
+ - app/assets/stylesheets/iCheck/flat/pink.css
145
+ - app/assets/stylesheets/iCheck/flat/pink.png
146
+ - app/assets/stylesheets/iCheck/flat/pink@2x.png
147
+ - app/assets/stylesheets/iCheck/flat/purple.css
148
+ - app/assets/stylesheets/iCheck/flat/purple.png
149
+ - app/assets/stylesheets/iCheck/flat/purple@2x.png
150
+ - app/assets/stylesheets/iCheck/flat/red.css
151
+ - app/assets/stylesheets/iCheck/flat/red.png
152
+ - app/assets/stylesheets/iCheck/flat/red@2x.png
153
+ - app/assets/stylesheets/iCheck/flat/yellow.css
154
+ - app/assets/stylesheets/iCheck/flat/yellow.png
155
+ - app/assets/stylesheets/iCheck/flat/yellow@2x.png
156
+ - app/assets/stylesheets/ionicons.scss
157
+ - lib/adminlte-rails.rb
158
+ - lib/adminlte-rails/engine.rb
159
+ - lib/adminlte-rails/source_file.rb
160
+ - lib/adminlte-rails/version.rb
161
+ homepage: https://github.com/shine60vn/adminlte-rails
162
+ licenses:
163
+ - MIT
164
+ metadata: {}
165
+ post_install_message:
166
+ rdoc_options: []
167
+ require_paths:
168
+ - lib
169
+ required_ruby_version: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ required_rubygems_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - '>='
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
179
+ requirements: []
180
+ rubyforge_project:
181
+ rubygems_version: 2.1.11
182
+ signing_key:
183
+ specification_version: 4
184
+ summary: Integrates the AdminLTE theme with the Rails asset pipeline
185
+ test_files: []