leather2 3.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/leather/hero24.jpg +0 -0
  5. data/app/assets/javascripts/leather.js +13 -0
  6. data/app/assets/javascripts/leather/navbar_transparent.coffee +4 -0
  7. data/app/assets/javascripts/leather/off_canvas.coffee +16 -0
  8. data/app/assets/stylesheets/docs.scss +3 -0
  9. data/app/assets/stylesheets/leather.scss +19 -0
  10. data/app/assets/stylesheets/leather/_buttons.scss +31 -0
  11. data/app/assets/stylesheets/leather/_devise.scss +72 -0
  12. data/app/assets/stylesheets/leather/_grid.scss +19 -0
  13. data/app/assets/stylesheets/leather/_list_groups.scss +33 -0
  14. data/app/assets/stylesheets/leather/_nav_menus.scss +125 -0
  15. data/app/assets/stylesheets/leather/_navbar_transparent.scss +23 -0
  16. data/app/assets/stylesheets/leather/_off_canvas.scss +109 -0
  17. data/app/assets/stylesheets/leather/_scroll_panels.scss +85 -0
  18. data/app/assets/stylesheets/leather/_toggle_columns.scss +23 -0
  19. data/app/assets/stylesheets/leather/_typography.scss +12 -0
  20. data/app/assets/stylesheets/leather/_utilities.scss +54 -0
  21. data/app/assets/stylesheets/leather/_variables.scss +8 -0
  22. data/app/assets/stylesheets/leather/components/_cta.scss +13 -0
  23. data/app/assets/stylesheets/leather/components/_features.scss +87 -0
  24. data/app/assets/stylesheets/leather/components/_flex_boxes.scss +37 -0
  25. data/app/assets/stylesheets/leather/components/_image_block.scss +55 -0
  26. data/app/controllers/leather/application_controller.rb +13 -0
  27. data/app/controllers/leather/layouts_controller.rb +15 -0
  28. data/app/helpers/leather/application_helper.rb +28 -0
  29. data/app/views/leather/application/_table.html.haml +23 -0
  30. data/app/views/leather/application/components.html.haml +173 -0
  31. data/app/views/leather/application/ui_kit.html.haml +405 -0
  32. data/app/views/leather/bootstrap_components/_dropdown_nav_item.html.haml +7 -0
  33. data/app/views/leather/bootstrap_components/_modal.html.haml +4 -0
  34. data/app/views/leather/bootstrap_components/_modal_body.html.haml +2 -0
  35. data/app/views/leather/bootstrap_components/_modal_footer.html.haml +2 -0
  36. data/app/views/leather/bootstrap_components/_modal_header.html.haml +5 -0
  37. data/app/views/leather/bootstrap_components/_nav_item.html.haml +2 -0
  38. data/app/views/leather/bootstrap_components/_nav_list.html.haml +2 -0
  39. data/app/views/leather/bootstrap_components/_navbar.html.haml +58 -0
  40. data/app/views/leather/layouts/_links.html.haml +8 -0
  41. data/app/views/leather/layouts/_navigation.html.haml +0 -0
  42. data/app/views/leather/layouts/admin.html.haml +20 -0
  43. data/app/views/leather/layouts/three_column.html.haml +47 -0
  44. data/app/views/leather/layouts/two_column.html.haml +34 -0
  45. data/config/routes.rb +7 -0
  46. data/lib/generators/leather/install/install_generator.rb +29 -0
  47. data/lib/leather.rb +12 -0
  48. data/lib/leather/action_controller_extension.rb +39 -0
  49. data/lib/leather/engine.rb +9 -0
  50. data/lib/leather/leather_helpers.rb +58 -0
  51. data/lib/leather/railtie.rb +12 -0
  52. data/lib/leather/version.rb +3 -0
  53. data/lib/tasks/leather_tasks.rake +4 -0
  54. data/templates/_navigation.html.haml +14 -0
  55. data/templates/bootstrap_variables.css.scss +848 -0
  56. data/templates/high_voltage.rb +4 -0
  57. data/templates/views/devise/passwords/edit.html.erb +28 -0
  58. data/templates/views/devise/passwords/new.html.erb +22 -0
  59. data/templates/views/devise/registrations/new.html.erb +32 -0
  60. data/templates/views/devise/sessions/new.html.erb +32 -0
  61. data/templates/views/devise/shared/_links.html.erb +23 -0
  62. data/templates/views/devise/shared/_welcome.html.erb +4 -0
  63. data/templates/views/pages/home.html.haml +2 -0
  64. data/test/dummy/README.rdoc +28 -0
  65. data/test/dummy/Rakefile +6 -0
  66. data/test/dummy/app/assets/javascripts/application.js +17 -0
  67. data/test/dummy/app/assets/stylesheets/application.css.scss +3 -0
  68. data/test/dummy/app/assets/stylesheets/bootstrap_variables.css.scss +848 -0
  69. data/test/dummy/app/controllers/application_controller.rb +5 -0
  70. data/test/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/dummy/app/models/user.rb +6 -0
  72. data/test/dummy/app/views/application/_navigation.html.haml +14 -0
  73. data/test/dummy/app/views/devise/passwords/edit.html.erb +28 -0
  74. data/test/dummy/app/views/devise/passwords/new.html.erb +22 -0
  75. data/test/dummy/app/views/devise/registrations/new.html.erb +32 -0
  76. data/test/dummy/app/views/devise/sessions/new.html.erb +32 -0
  77. data/test/dummy/app/views/devise/shared/_links.html.erb +23 -0
  78. data/test/dummy/app/views/devise/shared/_welcome.html.erb +4 -0
  79. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  80. data/test/dummy/app/views/pages/home.html.haml +2 -0
  81. data/test/dummy/bin/bundle +3 -0
  82. data/test/dummy/bin/rails +4 -0
  83. data/test/dummy/bin/rake +4 -0
  84. data/test/dummy/config.ru +4 -0
  85. data/test/dummy/config/application.rb +23 -0
  86. data/test/dummy/config/boot.rb +5 -0
  87. data/test/dummy/config/database.yml +25 -0
  88. data/test/dummy/config/environment.rb +5 -0
  89. data/test/dummy/config/environments/development.rb +37 -0
  90. data/test/dummy/config/environments/production.rb +82 -0
  91. data/test/dummy/config/environments/test.rb +39 -0
  92. data/test/dummy/config/initializers/assets.rb +8 -0
  93. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  94. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  95. data/test/dummy/config/initializers/devise.rb +259 -0
  96. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/test/dummy/config/initializers/high_voltage.rb +4 -0
  98. data/test/dummy/config/initializers/inflections.rb +16 -0
  99. data/test/dummy/config/initializers/mime_types.rb +4 -0
  100. data/test/dummy/config/initializers/session_store.rb +3 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/devise.en.yml +60 -0
  103. data/test/dummy/config/locales/en.yml +23 -0
  104. data/test/dummy/config/routes.rb +4 -0
  105. data/test/dummy/config/secrets.yml +22 -0
  106. data/test/dummy/db/development.sqlite3 +0 -0
  107. data/test/dummy/db/migrate/20140814162425_devise_create_users.rb +42 -0
  108. data/test/dummy/db/schema.rb +34 -0
  109. data/test/dummy/log/development.log +85136 -0
  110. data/test/dummy/public/404.html +67 -0
  111. data/test/dummy/public/422.html +67 -0
  112. data/test/dummy/public/500.html +66 -0
  113. data/test/dummy/public/favicon.ico +0 -0
  114. data/test/dummy/test/fixtures/users.yml +11 -0
  115. data/test/dummy/test/models/user_test.rb +7 -0
  116. data/test/integration/navigation_test.rb +10 -0
  117. data/test/leather_test.rb +7 -0
  118. data/test/test_helper.rb +15 -0
  119. metadata +348 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class LeatherTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Leather
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,348 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: leather2
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.5.3
5
+ platform: ruby
6
+ authors:
7
+ - David Van Der Beek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-03-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: devise
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: haml-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: high_voltage
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bootstrap-sass
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 3.3.7
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 3.3.7
83
+ - !ruby/object:Gem::Dependency
84
+ name: jquery-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: sqlite3
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: coffee-rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sass-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 4.0.3
132
+ - - "<"
133
+ - !ruby/object:Gem::Version
134
+ version: 5.0.6
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: 4.0.3
142
+ - - "<"
143
+ - !ruby/object:Gem::Version
144
+ version: 5.0.6
145
+ description: Bootstrap tools - UI Kit, Devise Views, and Component Partials
146
+ email:
147
+ - david@flyoverworks.com
148
+ executables: []
149
+ extensions: []
150
+ extra_rdoc_files: []
151
+ files:
152
+ - MIT-LICENSE
153
+ - Rakefile
154
+ - app/assets/images/leather/hero24.jpg
155
+ - app/assets/javascripts/leather.js
156
+ - app/assets/javascripts/leather/navbar_transparent.coffee
157
+ - app/assets/javascripts/leather/off_canvas.coffee
158
+ - app/assets/stylesheets/docs.scss
159
+ - app/assets/stylesheets/leather.scss
160
+ - app/assets/stylesheets/leather/_buttons.scss
161
+ - app/assets/stylesheets/leather/_devise.scss
162
+ - app/assets/stylesheets/leather/_grid.scss
163
+ - app/assets/stylesheets/leather/_list_groups.scss
164
+ - app/assets/stylesheets/leather/_nav_menus.scss
165
+ - app/assets/stylesheets/leather/_navbar_transparent.scss
166
+ - app/assets/stylesheets/leather/_off_canvas.scss
167
+ - app/assets/stylesheets/leather/_scroll_panels.scss
168
+ - app/assets/stylesheets/leather/_toggle_columns.scss
169
+ - app/assets/stylesheets/leather/_typography.scss
170
+ - app/assets/stylesheets/leather/_utilities.scss
171
+ - app/assets/stylesheets/leather/_variables.scss
172
+ - app/assets/stylesheets/leather/components/_cta.scss
173
+ - app/assets/stylesheets/leather/components/_features.scss
174
+ - app/assets/stylesheets/leather/components/_flex_boxes.scss
175
+ - app/assets/stylesheets/leather/components/_image_block.scss
176
+ - app/controllers/leather/application_controller.rb
177
+ - app/controllers/leather/layouts_controller.rb
178
+ - app/helpers/leather/application_helper.rb
179
+ - app/views/leather/application/_table.html.haml
180
+ - app/views/leather/application/components.html.haml
181
+ - app/views/leather/application/ui_kit.html.haml
182
+ - app/views/leather/bootstrap_components/_dropdown_nav_item.html.haml
183
+ - app/views/leather/bootstrap_components/_modal.html.haml
184
+ - app/views/leather/bootstrap_components/_modal_body.html.haml
185
+ - app/views/leather/bootstrap_components/_modal_footer.html.haml
186
+ - app/views/leather/bootstrap_components/_modal_header.html.haml
187
+ - app/views/leather/bootstrap_components/_nav_item.html.haml
188
+ - app/views/leather/bootstrap_components/_nav_list.html.haml
189
+ - app/views/leather/bootstrap_components/_navbar.html.haml
190
+ - app/views/leather/layouts/_links.html.haml
191
+ - app/views/leather/layouts/_navigation.html.haml
192
+ - app/views/leather/layouts/admin.html.haml
193
+ - app/views/leather/layouts/three_column.html.haml
194
+ - app/views/leather/layouts/two_column.html.haml
195
+ - config/routes.rb
196
+ - lib/generators/leather/install/install_generator.rb
197
+ - lib/leather.rb
198
+ - lib/leather/action_controller_extension.rb
199
+ - lib/leather/engine.rb
200
+ - lib/leather/leather_helpers.rb
201
+ - lib/leather/railtie.rb
202
+ - lib/leather/version.rb
203
+ - lib/tasks/leather_tasks.rake
204
+ - templates/_navigation.html.haml
205
+ - templates/bootstrap_variables.css.scss
206
+ - templates/high_voltage.rb
207
+ - templates/views/devise/passwords/edit.html.erb
208
+ - templates/views/devise/passwords/new.html.erb
209
+ - templates/views/devise/registrations/new.html.erb
210
+ - templates/views/devise/sessions/new.html.erb
211
+ - templates/views/devise/shared/_links.html.erb
212
+ - templates/views/devise/shared/_welcome.html.erb
213
+ - templates/views/pages/home.html.haml
214
+ - test/dummy/README.rdoc
215
+ - test/dummy/Rakefile
216
+ - test/dummy/app/assets/javascripts/application.js
217
+ - test/dummy/app/assets/stylesheets/application.css.scss
218
+ - test/dummy/app/assets/stylesheets/bootstrap_variables.css.scss
219
+ - test/dummy/app/controllers/application_controller.rb
220
+ - test/dummy/app/helpers/application_helper.rb
221
+ - test/dummy/app/models/user.rb
222
+ - test/dummy/app/views/application/_navigation.html.haml
223
+ - test/dummy/app/views/devise/passwords/edit.html.erb
224
+ - test/dummy/app/views/devise/passwords/new.html.erb
225
+ - test/dummy/app/views/devise/registrations/new.html.erb
226
+ - test/dummy/app/views/devise/sessions/new.html.erb
227
+ - test/dummy/app/views/devise/shared/_links.html.erb
228
+ - test/dummy/app/views/devise/shared/_welcome.html.erb
229
+ - test/dummy/app/views/layouts/application.html.erb
230
+ - test/dummy/app/views/pages/home.html.haml
231
+ - test/dummy/bin/bundle
232
+ - test/dummy/bin/rails
233
+ - test/dummy/bin/rake
234
+ - test/dummy/config.ru
235
+ - test/dummy/config/application.rb
236
+ - test/dummy/config/boot.rb
237
+ - test/dummy/config/database.yml
238
+ - test/dummy/config/environment.rb
239
+ - test/dummy/config/environments/development.rb
240
+ - test/dummy/config/environments/production.rb
241
+ - test/dummy/config/environments/test.rb
242
+ - test/dummy/config/initializers/assets.rb
243
+ - test/dummy/config/initializers/backtrace_silencers.rb
244
+ - test/dummy/config/initializers/cookies_serializer.rb
245
+ - test/dummy/config/initializers/devise.rb
246
+ - test/dummy/config/initializers/filter_parameter_logging.rb
247
+ - test/dummy/config/initializers/high_voltage.rb
248
+ - test/dummy/config/initializers/inflections.rb
249
+ - test/dummy/config/initializers/mime_types.rb
250
+ - test/dummy/config/initializers/session_store.rb
251
+ - test/dummy/config/initializers/wrap_parameters.rb
252
+ - test/dummy/config/locales/devise.en.yml
253
+ - test/dummy/config/locales/en.yml
254
+ - test/dummy/config/routes.rb
255
+ - test/dummy/config/secrets.yml
256
+ - test/dummy/db/development.sqlite3
257
+ - test/dummy/db/migrate/20140814162425_devise_create_users.rb
258
+ - test/dummy/db/schema.rb
259
+ - test/dummy/log/development.log
260
+ - test/dummy/public/404.html
261
+ - test/dummy/public/422.html
262
+ - test/dummy/public/500.html
263
+ - test/dummy/public/favicon.ico
264
+ - test/dummy/test/fixtures/users.yml
265
+ - test/dummy/test/models/user_test.rb
266
+ - test/integration/navigation_test.rb
267
+ - test/leather_test.rb
268
+ - test/test_helper.rb
269
+ homepage: http://www.github.com/dvanderbeek/leather
270
+ licenses:
271
+ - MIT
272
+ metadata: {}
273
+ post_install_message:
274
+ rdoc_options: []
275
+ require_paths:
276
+ - lib
277
+ required_ruby_version: !ruby/object:Gem::Requirement
278
+ requirements:
279
+ - - ">="
280
+ - !ruby/object:Gem::Version
281
+ version: '0'
282
+ required_rubygems_version: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: '0'
287
+ requirements: []
288
+ rubyforge_project:
289
+ rubygems_version: 2.6.8
290
+ signing_key:
291
+ specification_version: 4
292
+ summary: Bootstrap tools - UI Kit, Devise Views, and Component Partials
293
+ test_files:
294
+ - test/dummy/app/models/user.rb
295
+ - test/dummy/app/controllers/application_controller.rb
296
+ - test/dummy/app/views/devise/passwords/edit.html.erb
297
+ - test/dummy/app/views/devise/passwords/new.html.erb
298
+ - test/dummy/app/views/devise/shared/_welcome.html.erb
299
+ - test/dummy/app/views/devise/shared/_links.html.erb
300
+ - test/dummy/app/views/devise/sessions/new.html.erb
301
+ - test/dummy/app/views/devise/registrations/new.html.erb
302
+ - test/dummy/app/views/layouts/application.html.erb
303
+ - test/dummy/app/views/application/_navigation.html.haml
304
+ - test/dummy/app/views/pages/home.html.haml
305
+ - test/dummy/app/assets/javascripts/application.js
306
+ - test/dummy/app/assets/stylesheets/bootstrap_variables.css.scss
307
+ - test/dummy/app/assets/stylesheets/application.css.scss
308
+ - test/dummy/app/helpers/application_helper.rb
309
+ - test/dummy/test/models/user_test.rb
310
+ - test/dummy/test/fixtures/users.yml
311
+ - test/dummy/bin/rake
312
+ - test/dummy/bin/bundle
313
+ - test/dummy/bin/rails
314
+ - test/dummy/config/secrets.yml
315
+ - test/dummy/config/routes.rb
316
+ - test/dummy/config/locales/en.yml
317
+ - test/dummy/config/locales/devise.en.yml
318
+ - test/dummy/config/environments/production.rb
319
+ - test/dummy/config/environments/development.rb
320
+ - test/dummy/config/environments/test.rb
321
+ - test/dummy/config/environment.rb
322
+ - test/dummy/config/application.rb
323
+ - test/dummy/config/database.yml
324
+ - test/dummy/config/boot.rb
325
+ - test/dummy/config/initializers/backtrace_silencers.rb
326
+ - test/dummy/config/initializers/high_voltage.rb
327
+ - test/dummy/config/initializers/mime_types.rb
328
+ - test/dummy/config/initializers/filter_parameter_logging.rb
329
+ - test/dummy/config/initializers/session_store.rb
330
+ - test/dummy/config/initializers/wrap_parameters.rb
331
+ - test/dummy/config/initializers/assets.rb
332
+ - test/dummy/config/initializers/cookies_serializer.rb
333
+ - test/dummy/config/initializers/devise.rb
334
+ - test/dummy/config/initializers/inflections.rb
335
+ - test/dummy/config.ru
336
+ - test/dummy/Rakefile
337
+ - test/dummy/public/favicon.ico
338
+ - test/dummy/public/422.html
339
+ - test/dummy/public/500.html
340
+ - test/dummy/public/404.html
341
+ - test/dummy/db/schema.rb
342
+ - test/dummy/db/migrate/20140814162425_devise_create_users.rb
343
+ - test/dummy/db/development.sqlite3
344
+ - test/dummy/log/development.log
345
+ - test/dummy/README.rdoc
346
+ - test/integration/navigation_test.rb
347
+ - test/test_helper.rb
348
+ - test/leather_test.rb