flattened_active_admin 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.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +21 -0
  5. data/app/assets/stylesheets/flattened_active_admin/_base.css.scss +42 -0
  6. data/app/assets/stylesheets/flattened_active_admin/_forms.css.scss +355 -0
  7. data/app/assets/stylesheets/flattened_active_admin/_header.css.scss +156 -0
  8. data/app/assets/stylesheets/flattened_active_admin/_mixins.css.scss +1 -0
  9. data/app/assets/stylesheets/flattened_active_admin/_typography.css.scss +100 -0
  10. data/app/assets/stylesheets/flattened_active_admin/components/_batch_actions.css.scss +11 -0
  11. data/app/assets/stylesheets/flattened_active_admin/components/_blank_slates.scss +31 -0
  12. data/app/assets/stylesheets/flattened_active_admin/components/_breadcrumbs.scss +20 -0
  13. data/app/assets/stylesheets/flattened_active_admin/components/_buttons.scss +11 -0
  14. data/app/assets/stylesheets/flattened_active_admin/components/_columns.scss +3 -0
  15. data/app/assets/stylesheets/flattened_active_admin/components/_comments.css.scss +41 -0
  16. data/app/assets/stylesheets/flattened_active_admin/components/_date_picker.css.scss +127 -0
  17. data/app/assets/stylesheets/flattened_active_admin/components/_dropdown_menu.scss +150 -0
  18. data/app/assets/stylesheets/flattened_active_admin/components/_flash_messages.css.scss +39 -0
  19. data/app/assets/stylesheets/flattened_active_admin/components/_grid.scss +9 -0
  20. data/app/assets/stylesheets/flattened_active_admin/components/_index_list.scss +12 -0
  21. data/app/assets/stylesheets/flattened_active_admin/components/_links.scss +5 -0
  22. data/app/assets/stylesheets/flattened_active_admin/components/_modal_dialog.scss +31 -0
  23. data/app/assets/stylesheets/flattened_active_admin/components/_pagination.scss +34 -0
  24. data/app/assets/stylesheets/flattened_active_admin/components/_panels.scss +6 -0
  25. data/app/assets/stylesheets/flattened_active_admin/components/_popovers.css.scss +123 -0
  26. data/app/assets/stylesheets/flattened_active_admin/components/_scopes.scss +10 -0
  27. data/app/assets/stylesheets/flattened_active_admin/components/_status_tags.scss +16 -0
  28. data/app/assets/stylesheets/flattened_active_admin/components/_table_tools.css.scss +64 -0
  29. data/app/assets/stylesheets/flattened_active_admin/components/_tables.css.scss +110 -0
  30. data/app/assets/stylesheets/flattened_active_admin/mixins/_all.css.scss +11 -0
  31. data/app/assets/stylesheets/flattened_active_admin/mixins/_buttons.css.scss +64 -0
  32. data/app/assets/stylesheets/flattened_active_admin/mixins/_gradients.css.scss +47 -0
  33. data/app/assets/stylesheets/flattened_active_admin/mixins/_icons.css.scss +20 -0
  34. data/app/assets/stylesheets/flattened_active_admin/mixins/_reset.css.scss +165 -0
  35. data/app/assets/stylesheets/flattened_active_admin/mixins/_rounded.css.scss +43 -0
  36. data/app/assets/stylesheets/flattened_active_admin/mixins/_sections.css.scss +31 -0
  37. data/app/assets/stylesheets/flattened_active_admin/mixins/_shadows.css.scss +22 -0
  38. data/app/assets/stylesheets/flattened_active_admin/mixins/_typography.scss +3 -0
  39. data/app/assets/stylesheets/flattened_active_admin/mixins/_utilities.scss +26 -0
  40. data/app/assets/stylesheets/flattened_active_admin/mixins/_variables.css.scss +45 -0
  41. data/app/assets/stylesheets/flattened_active_admin/pages/_logged_out.scss +44 -0
  42. data/app/assets/stylesheets/flattened_active_admin/print.css.scss +284 -0
  43. data/app/assets/stylesheets/flattened_active_admin/structure/_footer.scss +14 -0
  44. data/app/assets/stylesheets/flattened_active_admin/structure/_main_structure.scss +29 -0
  45. data/app/assets/stylesheets/flattened_active_admin/structure/_title_bar.scss +45 -0
  46. data/config/routes.rb +2 -0
  47. data/lib/flattened_active_admin/engine.rb +4 -0
  48. data/lib/flattened_active_admin/version.rb +3 -0
  49. data/lib/flattened_active_admin.rb +4 -0
  50. data/lib/generators/flattened_active_admin/variables/USAGE +8 -0
  51. data/lib/generators/flattened_active_admin/variables/templates/variables.css.scss +44 -0
  52. data/lib/generators/flattened_active_admin/variables/variables_generator.rb +9 -0
  53. data/lib/tasks/flattened_active_admin_tasks.rake +4 -0
  54. metadata +125 -0
@@ -0,0 +1,44 @@
1
+ body.logged_out {
2
+ background: #e8e9ea;
3
+
4
+ #content_wrapper{
5
+ width: 500px;
6
+ margin: 70px auto;
7
+ #active_admin_content {
8
+ @include shadow;
9
+ background: #fff;
10
+ padding: 13px 30px;
11
+ }
12
+ }
13
+
14
+ h2 {
15
+ @include section-header;
16
+ @include primary-gradient;
17
+ @include text-shadow(#000);
18
+ box-shadow: 0 1px 3px rgba(0,0,0,0.3);
19
+ border: none;
20
+ color: #fff;
21
+ margin: -13px -30px 20px -30px;
22
+ }
23
+
24
+ #login {
25
+ /* Login Form */
26
+ form {
27
+ fieldset {
28
+ @include no-shadow;
29
+ background: none;
30
+ padding: 0;
31
+ li { padding: 10px 0; }
32
+
33
+ input[type=text], input[type=email], input[type=password] {
34
+ width: 70%;
35
+ }
36
+ &.buttons { margin-left: 20%; }
37
+ margin-bottom: 0;
38
+ }
39
+ }
40
+
41
+ a { float: right; margin-top: -32px; }
42
+ }
43
+
44
+ }
@@ -0,0 +1,284 @@
1
+ /* Active Admin Print Stylesheet */
2
+
3
+ // Set colors used elsewhere
4
+ $primary-color: black;
5
+ $text-color: black;
6
+
7
+ // Reset
8
+ @import "flattened_active_admin/mixins/reset";
9
+ @include global-reset;
10
+
11
+ // Partials
12
+ @import "flattened_active_admin/typography";
13
+
14
+ body {
15
+ font-family: Helvetica, Arial, sans-serif;
16
+ line-height: 150%;
17
+ font-size: 72%;
18
+ background: #fff;
19
+ width: 99%;
20
+ margin: 0;
21
+ padding: .5%;
22
+ color: $text-color;
23
+ }
24
+
25
+ a {
26
+ color: $text-color;
27
+ text-decoration: none;
28
+ }
29
+
30
+ h3 {
31
+ font-weight: bold;
32
+ margin-bottom: .5em;
33
+ }
34
+
35
+ // Header
36
+ #header {
37
+ float: left;
38
+
39
+ #tabs, .tabs, #utility_nav {
40
+ display: none;
41
+ }
42
+
43
+ h1{
44
+ font-weight: bold;
45
+ }
46
+ }
47
+
48
+ .flashes {
49
+ display: none;
50
+ }
51
+
52
+ #title_bar {
53
+ float: right;
54
+
55
+ h2 {
56
+ line-height: 2em;
57
+ margin: 0;
58
+ }
59
+
60
+ .breadcrumb, #titlebar_right {
61
+ display: none;
62
+ }
63
+ }
64
+
65
+ // Content
66
+ #active_admin_content {
67
+ border-top: thick solid black;
68
+ clear: both;
69
+ margin-top: 2em;
70
+ padding-top: 3em;
71
+ }
72
+
73
+ // Footer
74
+ #footer {
75
+ display: none;
76
+ }
77
+
78
+ // Tables
79
+ .table_tools {
80
+ ul {
81
+ padding: 0;
82
+ margin: 0;
83
+ list-style-type: none;
84
+
85
+ li {
86
+ display: none;
87
+ padding: 0;
88
+ margin-bottom: 1em;
89
+
90
+ &.scope.selected, &.index.selected {
91
+ display: block;
92
+
93
+ &:before {
94
+ content: "Showing ";
95
+ }
96
+
97
+ a {
98
+ font-weight: bold;
99
+ }
100
+
101
+ span {
102
+ display: inline-block;
103
+ font-weight: normal;
104
+ font-size: .9em;
105
+ }
106
+ }
107
+ }
108
+
109
+ }
110
+ }
111
+
112
+ table {
113
+ margin-bottom: 1.5em;
114
+ text-align: left;
115
+ width: 100%;
116
+
117
+ thead {
118
+ display: table-header-group;
119
+
120
+ th {
121
+ background: none;
122
+ border-bottom: medium solid black;
123
+ font-weight: bold;
124
+
125
+ a{
126
+ text-decoration: none;
127
+ }
128
+ }
129
+ }
130
+
131
+ th, td {
132
+ padding: .5em 1em;
133
+
134
+ .member_link {
135
+ display: none;
136
+ }
137
+ }
138
+
139
+ td {
140
+ border-bottom: thin solid black;
141
+ }
142
+
143
+ tr{
144
+ page-break-inside: avoid;
145
+ }
146
+ }
147
+
148
+ // Index
149
+ #index_footer, .pagination_information {
150
+ display: none;
151
+ }
152
+
153
+ .index_grid {
154
+ td {
155
+ border: none;
156
+ text-align: center;
157
+ vertical-align: middle;
158
+
159
+ img {
160
+ max-width: 1in;
161
+ }
162
+ }
163
+ }
164
+
165
+ // Show
166
+ .panel {
167
+ border-bottom: thick solid #ccc;
168
+ margin-bottom: 3em;
169
+ padding-bottom: 2em;
170
+ page-break-inside: avoid;
171
+
172
+ &:last-child {
173
+ border-bottom: none;
174
+ }
175
+ }
176
+
177
+ .comments {
178
+ form {
179
+ display: none;
180
+ }
181
+
182
+ .active_admin_comment {
183
+ border-top: thin solid black;
184
+ padding-top: 1em;
185
+
186
+ .active_admin_comment_meta {
187
+ h4 {
188
+ font-size: 1em;
189
+ font-weight: bold;
190
+ float: left;
191
+ margin-right: .5em;
192
+ margin-bottom: 0;
193
+ }
194
+
195
+ span {
196
+ font-size: .9em;
197
+ font-style: italic;
198
+ vertical-align: top;
199
+ }
200
+ }
201
+
202
+ .active_admin_comment_body {
203
+ clear: both;
204
+ margin-bottom: 1em;
205
+ }
206
+ }
207
+ }
208
+
209
+
210
+ // Attribute Tables
211
+ .attributes_table {
212
+ border-top: medium solid black;
213
+
214
+ th {
215
+ border-bottom: thin solid black;
216
+ vertical-align: top;
217
+
218
+ &:after {
219
+ content: ':';
220
+ }
221
+ }
222
+
223
+ td {
224
+ img {
225
+ max-height: 4in;
226
+ max-width: 6in;
227
+ }
228
+ }
229
+ }
230
+
231
+ // Sidebars
232
+ #filters_sidebar_section {
233
+ display: none;
234
+ }
235
+
236
+ // Forms
237
+ form {
238
+ fieldset {
239
+ border-top: thick solid #ccc;
240
+ padding-top: 2em;
241
+ margin-bottom: 2em;
242
+
243
+ &:last-child {
244
+ border-bottom: none;
245
+ }
246
+ }
247
+
248
+ .buttons, abbr {
249
+ display: none;
250
+ }
251
+ ol {
252
+ list-style-type: none;
253
+ padding: 0;
254
+ margin: 0;
255
+
256
+ li{
257
+ border-top: thin solid black;
258
+ margin: 0;
259
+ padding: 1em 0;
260
+ overflow: hidden;
261
+
262
+ &.password, &.hidden {
263
+ display: none;
264
+ }
265
+
266
+ label {
267
+ font-weight: bold;
268
+ float: left;
269
+ width: 20%;
270
+ }
271
+
272
+ input, textarea, select {
273
+ background: none;
274
+ border: 0;
275
+ font: Arial, Helvetica, sans-serif;
276
+ }
277
+
278
+ input[type=file] {
279
+ display: none;
280
+ }
281
+
282
+ }
283
+ }
284
+ }
@@ -0,0 +1,14 @@
1
+ #footer {
2
+ padding: 30px 30px;
3
+ font-size: 0.8em;
4
+ clear: both;
5
+
6
+ p {
7
+ padding-top: 10px
8
+ }
9
+ }
10
+
11
+ // -------------------------------------- Index Footer (Under Table)
12
+ #index_footer { padding-top: 5px; text-align: right; font-size: 0.85em; }
13
+
14
+ .index_content { clear: both; }
@@ -0,0 +1,29 @@
1
+ #wrapper {
2
+ width: 100%;
3
+ }
4
+
5
+ .index #wrapper {
6
+ display: table;
7
+ }
8
+
9
+ #active_admin_content {
10
+ margin: 0;
11
+ padding: $horizontal-page-margin;
12
+
13
+ #main_content_wrapper {
14
+ float: left;
15
+ width: 100%;
16
+
17
+ #main_content{
18
+ margin-right: 300px;
19
+ }
20
+ }
21
+
22
+ &.without_sidebar #main_content_wrapper #main_content{ margin-right: 0; }
23
+
24
+ #sidebar {
25
+ float: left;
26
+ width: $sidebar-width;
27
+ margin-left: -$sidebar-width;
28
+ }
29
+ }
@@ -0,0 +1,45 @@
1
+ #title_bar {
2
+ @include section-header;
3
+ @include clearfix;
4
+ @include box-sizing(border-box);
5
+ display: table;
6
+ border-bottom-color: #EEE;
7
+ width: 100%;
8
+ position: relative;
9
+ margin: 0;
10
+ padding: 10px $horizontal-page-margin;
11
+ z-index: 800;
12
+
13
+ #titlebar_left, #titlebar_right {
14
+ height: 50px;
15
+ vertical-align: middle;
16
+ display: table-cell;
17
+ }
18
+
19
+ #titlebar_right {
20
+ text-align: right;
21
+ }
22
+
23
+ h2 {
24
+ margin: 0;
25
+ padding: 0;
26
+ font-size: 2.6em;
27
+ line-height: 100%;
28
+ font-weight: bold;
29
+ }
30
+
31
+ .action_items {
32
+ span.action_item {
33
+ & > a, & > .dropdown_menu > a {
34
+ @include light-button;
35
+ padding: 12px 17px 10px;
36
+ span.icon { vertical-align: bottom; margin-right: 4px;}
37
+ margin: 0px;
38
+
39
+ &:hover{
40
+ @include icon-color(#000);
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Rails.application.routes.draw do
2
+ end
@@ -0,0 +1,4 @@
1
+ module FlattenedActiveAdmin
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module FlattenedActiveAdmin
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,4 @@
1
+ require "flattened_active_admin/engine"
2
+
3
+ module FlattenedActiveAdmin
4
+ end
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Generates a custom SASS file with all the variables for flattened Active Admin
3
+
4
+ Example:
5
+ rails generate flattened_active_admin:variables
6
+
7
+ This will create:
8
+ assets/stylesheets/flattened_active_admin/variables.css.scss
@@ -0,0 +1,44 @@
1
+ // Variables used throughout Active Admin.
2
+ // They can be overridden by your own
3
+
4
+ // Colors
5
+ $body-background-color: #FFF !default;
6
+ $title-bar-background: #efefef !default;
7
+ $primary-color: #5E6469 !default;
8
+ $secondary-color: #f0f0f0 !default;
9
+ $current-menu-item-background: lighten($primary-color, 12%) !default;
10
+ $hover-menu-item-background: lighten($primary-color, 12%) !default;
11
+ $table-stripe-color: lighten($primary-color, 57%) !default;
12
+ $table-selected-color: #d9e4ec !default;
13
+ $error-color: #932419 !default;
14
+ $blank-slate-primary-color: #AAA !default;
15
+ $breadcrumbs-color: #8a949e !default;
16
+ $breadcrumbs-separator-color: #aab2ba !default;
17
+ $required-field-marker-color: #aaa !default;
18
+ $page-header-background-color: #5E6469 !default;
19
+
20
+ // Text
21
+ $text-color: #323537 !default;
22
+ $link-color: #38678b !default;
23
+ $header-dropdown-menu-text-color: #cdcdcd !default;
24
+ $section-header-text-color: $primary-color !default;
25
+ $page-header-text-color: #cdcdcd !default;
26
+ $form-label-color: $section-header-text-color !default;
27
+
28
+
29
+ // // Buttons
30
+ $action-button-default-background: #fbfbfb !default;
31
+ $action-button-hover-background: #FFF !default;
32
+ $action-button-active-background: #fafafa !default;
33
+
34
+ // Sizes
35
+ $border-width: 1px !default;
36
+ $horizontal-page-margin: 30px !default;
37
+ $sidebar-width: 270px !default;
38
+ $cell-padding: 5px 10px 3px 10px !default;
39
+ $cell-horizontal-padding: 12px !default;
40
+ $section-padding: 15px !default;
41
+ $text-input-horizontal-padding: 10px !default;
42
+ $text-input-total-padding: $text-input-horizontal-padding * 2 + $border-width * 2;
43
+
44
+ $blank-slate-border: 1px dashed #DADADA !default;
@@ -0,0 +1,9 @@
1
+ module FlattenedActiveAdmin
2
+ class VariablesGenerator < Rails::Generators::Base
3
+ source_root File.expand_path('../templates', __FILE__)
4
+
5
+ def copy_variables_file
6
+ copy_file "variables.css.scss", "app/assets/stylesheets/flattened_active_admin/variables.css.scss"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :flattened_active_admin do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flattened_active_admin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Isaac Norman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-09 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.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.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Flattens the Active Admin interface, and allows easy customisation of
42
+ your Admin backends
43
+ email:
44
+ - idn@papercloud.com.au
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - MIT-LICENSE
50
+ - README.rdoc
51
+ - Rakefile
52
+ - app/assets/stylesheets/flattened_active_admin/_base.css.scss
53
+ - app/assets/stylesheets/flattened_active_admin/_forms.css.scss
54
+ - app/assets/stylesheets/flattened_active_admin/_header.css.scss
55
+ - app/assets/stylesheets/flattened_active_admin/_mixins.css.scss
56
+ - app/assets/stylesheets/flattened_active_admin/_typography.css.scss
57
+ - app/assets/stylesheets/flattened_active_admin/components/_batch_actions.css.scss
58
+ - app/assets/stylesheets/flattened_active_admin/components/_blank_slates.scss
59
+ - app/assets/stylesheets/flattened_active_admin/components/_breadcrumbs.scss
60
+ - app/assets/stylesheets/flattened_active_admin/components/_buttons.scss
61
+ - app/assets/stylesheets/flattened_active_admin/components/_columns.scss
62
+ - app/assets/stylesheets/flattened_active_admin/components/_comments.css.scss
63
+ - app/assets/stylesheets/flattened_active_admin/components/_date_picker.css.scss
64
+ - app/assets/stylesheets/flattened_active_admin/components/_dropdown_menu.scss
65
+ - app/assets/stylesheets/flattened_active_admin/components/_flash_messages.css.scss
66
+ - app/assets/stylesheets/flattened_active_admin/components/_grid.scss
67
+ - app/assets/stylesheets/flattened_active_admin/components/_index_list.scss
68
+ - app/assets/stylesheets/flattened_active_admin/components/_links.scss
69
+ - app/assets/stylesheets/flattened_active_admin/components/_modal_dialog.scss
70
+ - app/assets/stylesheets/flattened_active_admin/components/_pagination.scss
71
+ - app/assets/stylesheets/flattened_active_admin/components/_panels.scss
72
+ - app/assets/stylesheets/flattened_active_admin/components/_popovers.css.scss
73
+ - app/assets/stylesheets/flattened_active_admin/components/_scopes.scss
74
+ - app/assets/stylesheets/flattened_active_admin/components/_status_tags.scss
75
+ - app/assets/stylesheets/flattened_active_admin/components/_table_tools.css.scss
76
+ - app/assets/stylesheets/flattened_active_admin/components/_tables.css.scss
77
+ - app/assets/stylesheets/flattened_active_admin/mixins/_all.css.scss
78
+ - app/assets/stylesheets/flattened_active_admin/mixins/_buttons.css.scss
79
+ - app/assets/stylesheets/flattened_active_admin/mixins/_gradients.css.scss
80
+ - app/assets/stylesheets/flattened_active_admin/mixins/_icons.css.scss
81
+ - app/assets/stylesheets/flattened_active_admin/mixins/_reset.css.scss
82
+ - app/assets/stylesheets/flattened_active_admin/mixins/_rounded.css.scss
83
+ - app/assets/stylesheets/flattened_active_admin/mixins/_sections.css.scss
84
+ - app/assets/stylesheets/flattened_active_admin/mixins/_shadows.css.scss
85
+ - app/assets/stylesheets/flattened_active_admin/mixins/_typography.scss
86
+ - app/assets/stylesheets/flattened_active_admin/mixins/_utilities.scss
87
+ - app/assets/stylesheets/flattened_active_admin/mixins/_variables.css.scss
88
+ - app/assets/stylesheets/flattened_active_admin/pages/_logged_out.scss
89
+ - app/assets/stylesheets/flattened_active_admin/print.css.scss
90
+ - app/assets/stylesheets/flattened_active_admin/structure/_footer.scss
91
+ - app/assets/stylesheets/flattened_active_admin/structure/_main_structure.scss
92
+ - app/assets/stylesheets/flattened_active_admin/structure/_title_bar.scss
93
+ - config/routes.rb
94
+ - lib/flattened_active_admin.rb
95
+ - lib/flattened_active_admin/engine.rb
96
+ - lib/flattened_active_admin/version.rb
97
+ - lib/generators/flattened_active_admin/variables/USAGE
98
+ - lib/generators/flattened_active_admin/variables/templates/variables.css.scss
99
+ - lib/generators/flattened_active_admin/variables/variables_generator.rb
100
+ - lib/tasks/flattened_active_admin_tasks.rake
101
+ homepage: http://github.com/RustComet/flattened_active_admin
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.2.2
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: A Simple Add on to Active Admin to give it a flatter feel.
125
+ test_files: []