dae-material 0.0.1

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 (97) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/README.md +39 -0
  8. data/Rakefile +1 -0
  9. data/app/assets/fonts/material-design-icons/LICENSE.txt +428 -0
  10. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  11. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +751 -0
  12. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  13. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  14. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
  15. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  16. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  17. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  18. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  19. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  20. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  21. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  22. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  23. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  24. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  25. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  26. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  27. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  28. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  29. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  30. data/app/assets/javascripts/materialize-sprockets.js +27 -0
  31. data/app/assets/javascripts/materialize.js +6023 -0
  32. data/app/assets/javascripts/materialize/animation.js +9 -0
  33. data/app/assets/javascripts/materialize/buttons.js +35 -0
  34. data/app/assets/javascripts/materialize/cards.js +27 -0
  35. data/app/assets/javascripts/materialize/character_counter.js +59 -0
  36. data/app/assets/javascripts/materialize/collapsible.js +139 -0
  37. data/app/assets/javascripts/materialize/date_picker/picker.date.js +1430 -0
  38. data/app/assets/javascripts/materialize/date_picker/picker.js +1123 -0
  39. data/app/assets/javascripts/materialize/dropdown.js +176 -0
  40. data/app/assets/javascripts/materialize/forms.js +397 -0
  41. data/app/assets/javascripts/materialize/global.js +31 -0
  42. data/app/assets/javascripts/materialize/hammer.min.js +1 -0
  43. data/app/assets/javascripts/materialize/init.js +137 -0
  44. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +205 -0
  45. data/app/assets/javascripts/materialize/jquery.hammer.js +33 -0
  46. data/app/assets/javascripts/materialize/jquery.timeago.min.js +1 -0
  47. data/app/assets/javascripts/materialize/leanModal.js +139 -0
  48. data/app/assets/javascripts/materialize/materialbox.js +249 -0
  49. data/app/assets/javascripts/materialize/parallax.js +58 -0
  50. data/app/assets/javascripts/materialize/prism.js +8 -0
  51. data/app/assets/javascripts/materialize/pushpin.js +62 -0
  52. data/app/assets/javascripts/materialize/scrollFire.js +69 -0
  53. data/app/assets/javascripts/materialize/scrollspy.js +284 -0
  54. data/app/assets/javascripts/materialize/sideNav.js +335 -0
  55. data/app/assets/javascripts/materialize/slider.js +263 -0
  56. data/app/assets/javascripts/materialize/tabs.js +129 -0
  57. data/app/assets/javascripts/materialize/toasts.js +121 -0
  58. data/app/assets/javascripts/materialize/tooltip.js +166 -0
  59. data/app/assets/javascripts/materialize/transitions.js +145 -0
  60. data/app/assets/javascripts/materialize/velocity.min.js +4 -0
  61. data/app/assets/javascripts/materialize/waves.js +338 -0
  62. data/app/assets/stylesheets/materialize.scss +38 -0
  63. data/app/assets/stylesheets/materialize/components/_buttons.scss +151 -0
  64. data/app/assets/stylesheets/materialize/components/_cards.scss +150 -0
  65. data/app/assets/stylesheets/materialize/components/_collapsible.scss +88 -0
  66. data/app/assets/stylesheets/materialize/components/_color.scss +412 -0
  67. data/app/assets/stylesheets/materialize/components/_dropdown.scss +38 -0
  68. data/app/assets/stylesheets/materialize/components/_form.scss +850 -0
  69. data/app/assets/stylesheets/materialize/components/_global.scss +682 -0
  70. data/app/assets/stylesheets/materialize/components/_grid.scss +118 -0
  71. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +783 -0
  72. data/app/assets/stylesheets/materialize/components/_materialbox.scss +41 -0
  73. data/app/assets/stylesheets/materialize/components/_mixins.scss +5 -0
  74. data/app/assets/stylesheets/materialize/components/_modal.scss +89 -0
  75. data/app/assets/stylesheets/materialize/components/_navbar.scss +143 -0
  76. data/app/assets/stylesheets/materialize/components/_normalize.scss +427 -0
  77. data/app/assets/stylesheets/materialize/components/_prefixer.scss +376 -0
  78. data/app/assets/stylesheets/materialize/components/_preloader.scss +332 -0
  79. data/app/assets/stylesheets/materialize/components/_roboto.scss +38 -0
  80. data/app/assets/stylesheets/materialize/components/_sideNav.scss +111 -0
  81. data/app/assets/stylesheets/materialize/components/_slider.scss +92 -0
  82. data/app/assets/stylesheets/materialize/components/_table_of_contents.scss +33 -0
  83. data/app/assets/stylesheets/materialize/components/_tabs.scss +42 -0
  84. data/app/assets/stylesheets/materialize/components/_toast.scss +63 -0
  85. data/app/assets/stylesheets/materialize/components/_tooltip.scss +34 -0
  86. data/app/assets/stylesheets/materialize/components/_typography.scss +56 -0
  87. data/app/assets/stylesheets/materialize/components/_variables.scss +143 -0
  88. data/app/assets/stylesheets/materialize/components/_waves.scss +167 -0
  89. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +435 -0
  90. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +201 -0
  91. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +125 -0
  92. data/bin/console +14 -0
  93. data/bin/setup +7 -0
  94. data/dae-material.gemspec +23 -0
  95. data/lib/dae/material.rb +7 -0
  96. data/lib/dae/material/version.rb +8 -0
  97. metadata +166 -0
@@ -0,0 +1,201 @@
1
+ /* ==========================================================================
2
+ $BASE-PICKER
3
+ ========================================================================== */
4
+ /**
5
+ * Note: the root picker element should *NOT* be styled more than what's here.
6
+ */
7
+ .picker {
8
+ font-size: 16px;
9
+ text-align: left;
10
+ line-height: 1.2;
11
+ color: #000000;
12
+ position: absolute;
13
+ z-index: 10000;
14
+ -webkit-user-select: none;
15
+ -moz-user-select: none;
16
+ -ms-user-select: none;
17
+ user-select: none;
18
+ }
19
+ /**
20
+ * The picker input element.
21
+ */
22
+ .picker__input {
23
+ cursor: default;
24
+ }
25
+ /**
26
+ * When the picker is opened, the input element is "activated".
27
+ */
28
+ .picker__input.picker__input--active {
29
+ border-color: #0089ec;
30
+ }
31
+ /**
32
+ * The holder is the only "scrollable" top-level container element.
33
+ */
34
+ .picker__holder {
35
+ width: 100%;
36
+ overflow-y: auto;
37
+ -webkit-overflow-scrolling: touch;
38
+ }
39
+
40
+ /*!
41
+ * Default mobile-first, responsive styling for pickadate.js
42
+ * Demo: http://amsul.github.io/pickadate.js
43
+ */
44
+ /**
45
+ * Note: the root picker element should *NOT* be styled more than what's here.
46
+ */
47
+ /**
48
+ * Make the holder and frame fullscreen.
49
+ */
50
+ .picker__holder,
51
+ .picker__frame {
52
+ bottom: 0;
53
+ left: 0;
54
+ right: 0;
55
+ top: 100%;
56
+ }
57
+ /**
58
+ * The holder should overlay the entire screen.
59
+ */
60
+ .picker__holder {
61
+ position: fixed;
62
+ -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
63
+ -moz-transition: background 0.15s ease-out, top 0s 0.15s;
64
+ transition: background 0.15s ease-out, top 0s 0.15s;
65
+ -webkit-backface-visibility: hidden;
66
+ }
67
+ /**
68
+ * The frame that bounds the box contents of the picker.
69
+ */
70
+ .picker__frame {
71
+ position: absolute;
72
+ margin: 0 auto;
73
+ min-width: 256px;
74
+
75
+ // picker width
76
+ max-width: 300px;
77
+ max-height: 350px;
78
+
79
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
80
+ filter: alpha(opacity=0);
81
+ -moz-opacity: 0;
82
+ opacity: 0;
83
+ -webkit-transition: all 0.15s ease-out;
84
+ -moz-transition: all 0.15s ease-out;
85
+ transition: all 0.15s ease-out;
86
+ }
87
+ @media (min-height: 28.875em) {
88
+ .picker__frame {
89
+ overflow: visible;
90
+ top: auto;
91
+ bottom: -100%;
92
+ max-height: 80%;
93
+ }
94
+ }
95
+ @media (min-height: 40.125em) {
96
+ .picker__frame {
97
+ margin-bottom: 7.5%;
98
+ }
99
+ }
100
+ /**
101
+ * The wrapper sets the stage to vertically align the box contents.
102
+ */
103
+ .picker__wrap {
104
+ display: table;
105
+ width: 100%;
106
+ height: 100%;
107
+ }
108
+ @media (min-height: 28.875em) {
109
+ .picker__wrap {
110
+ display: block;
111
+ }
112
+ }
113
+ /**
114
+ * The box contains all the picker contents.
115
+ */
116
+ .picker__box {
117
+ background: #ffffff;
118
+ display: table-cell;
119
+ vertical-align: middle;
120
+ }
121
+ //@media (min-height: 26.5em) {
122
+ // .picker__box {
123
+ //// font-size: 1.25em;
124
+ // }
125
+ //}
126
+ @media (min-height: 28.875em) {
127
+ .picker__box {
128
+ display: block;
129
+
130
+ // picker header font-size
131
+ // font-size: 1rem;
132
+
133
+ border: 1px solid #777777;
134
+ border-top-color: #898989;
135
+ border-bottom-width: 0;
136
+ -webkit-border-radius: 5px 5px 0 0;
137
+ -moz-border-radius: 5px 5px 0 0;
138
+ border-radius: 5px 5px 0 0;
139
+ -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
140
+ -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
141
+ box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
142
+ }
143
+ }
144
+ //@media (min-height: 40.125em) {
145
+ // .picker__box {
146
+ // font-size: 1.1rem;
147
+ // border-bottom-width: 1px;
148
+ // -webkit-border-radius: 5px;
149
+ // -moz-border-radius: 5px;
150
+ // border-radius: 5px;
151
+ // }
152
+ //}
153
+ /**
154
+ * When the picker opens...
155
+ */
156
+ .picker--opened .picker__holder {
157
+ top: 0;
158
+ background: transparent;
159
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
160
+ zoom: 1;
161
+ background: rgba(0, 0, 0, 0.32);
162
+ -webkit-transition: background 0.15s ease-out;
163
+ -moz-transition: background 0.15s ease-out;
164
+ transition: background 0.15s ease-out;
165
+ }
166
+ .picker--opened .picker__frame {
167
+ top: 0;
168
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
169
+ filter: alpha(opacity=100);
170
+ -moz-opacity: 1;
171
+ opacity: 1;
172
+ }
173
+ @media (min-height: 35.875em) {
174
+ .picker--opened .picker__frame {
175
+ top: 10%;
176
+ bottom: 20%auto;
177
+ }
178
+ }
179
+ /**
180
+ * For `large` screens, transform into an inline picker.
181
+ */
182
+
183
+ /* ==========================================================================
184
+ CUSTOM MATERIALIZE STYLES
185
+ ========================================================================== */
186
+
187
+ .picker__input.picker__input--active {
188
+ border-color: color("blue", "lighten-5");
189
+ }
190
+
191
+ .picker__frame {
192
+ margin: 0 auto;
193
+ max-width: 325px;
194
+ }
195
+
196
+ @media (min-height: 38.875em) {
197
+ .picker--opened .picker__frame {
198
+ top: 10%;
199
+ bottom: auto;
200
+ }
201
+ }
@@ -0,0 +1,125 @@
1
+ /* ==========================================================================
2
+ $BASE-TIME-PICKER
3
+ ========================================================================== */
4
+ /**
5
+ * The list of times.
6
+ */
7
+ .picker__list {
8
+ list-style: none;
9
+ padding: 0.75em 0 4.2em;
10
+ margin: 0;
11
+ }
12
+ /**
13
+ * The times on the clock.
14
+ */
15
+ .picker__list-item {
16
+ border-bottom: 1px solid #dddddd;
17
+ border-top: 1px solid #dddddd;
18
+ margin-bottom: -1px;
19
+ position: relative;
20
+ background: #ffffff;
21
+ padding: .75em 1.25em;
22
+ }
23
+ @media (min-height: 46.75em) {
24
+ .picker__list-item {
25
+ padding: .5em 1em;
26
+ }
27
+ }
28
+ /* Hovered time */
29
+ .picker__list-item:hover {
30
+ cursor: pointer;
31
+ color: #000000;
32
+ background: #b1dcfb;
33
+ border-color: #0089ec;
34
+ z-index: 10;
35
+ }
36
+ /* Highlighted and hovered/focused time */
37
+ .picker__list-item--highlighted {
38
+ border-color: #0089ec;
39
+ z-index: 10;
40
+ }
41
+ .picker__list-item--highlighted:hover,
42
+ .picker--focused .picker__list-item--highlighted {
43
+ cursor: pointer;
44
+ color: #000000;
45
+ background: #b1dcfb;
46
+ }
47
+ /* Selected and hovered/focused time */
48
+ .picker__list-item--selected,
49
+ .picker__list-item--selected:hover,
50
+ .picker--focused .picker__list-item--selected {
51
+ background: #0089ec;
52
+ color: #ffffff;
53
+ z-index: 10;
54
+ }
55
+ /* Disabled time */
56
+ .picker__list-item--disabled,
57
+ .picker__list-item--disabled:hover,
58
+ .picker--focused .picker__list-item--disabled {
59
+ background: #f5f5f5;
60
+ border-color: #f5f5f5;
61
+ color: #dddddd;
62
+ cursor: default;
63
+ border-color: #dddddd;
64
+ z-index: auto;
65
+ }
66
+ /**
67
+ * The clear button
68
+ */
69
+ .picker--time .picker__button--clear {
70
+ display: block;
71
+ width: 80%;
72
+ margin: 1em auto 0;
73
+ padding: 1em 1.25em;
74
+ background: none;
75
+ border: 0;
76
+ font-weight: 500;
77
+ font-size: .67em;
78
+ text-align: center;
79
+ text-transform: uppercase;
80
+ color: #666;
81
+ }
82
+ .picker--time .picker__button--clear:hover,
83
+ .picker--time .picker__button--clear:focus {
84
+ color: #000000;
85
+ background: #b1dcfb;
86
+ background: #ee2200;
87
+ border-color: #ee2200;
88
+ cursor: pointer;
89
+ color: #ffffff;
90
+ outline: none;
91
+ }
92
+ .picker--time .picker__button--clear:before {
93
+ top: -0.25em;
94
+ color: #666;
95
+ font-size: 1.25em;
96
+ font-weight: bold;
97
+ }
98
+ .picker--time .picker__button--clear:hover:before,
99
+ .picker--time .picker__button--clear:focus:before {
100
+ color: #ffffff;
101
+ }
102
+
103
+ /* ==========================================================================
104
+ $DEFAULT-TIME-PICKER
105
+ ========================================================================== */
106
+ /**
107
+ * The frame the bounds the time picker.
108
+ */
109
+ .picker--time .picker__frame {
110
+ min-width: 256px;
111
+ max-width: 320px;
112
+ }
113
+ /**
114
+ * The picker box.
115
+ */
116
+ .picker--time .picker__box {
117
+ font-size: 1em;
118
+ background: #f2f2f2;
119
+ padding: 0;
120
+ }
121
+ @media (min-height: 40.125em) {
122
+ .picker--time .picker__box {
123
+ margin-bottom: 5em;
124
+ }
125
+ }
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "dae/material"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dae/material/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dae-material"
8
+ spec.version = Dae::Material::VERSION
9
+ spec.authors = ["Ilton Garcia dos Santos Silveira"]
10
+ spec.email = ["ilton_unb@hotmail.com"]
11
+
12
+ spec.summary = 'Simple Rails assets gem for daemonite - material'
13
+ spec.description = 'Simple Rails assets gem for daemonite - material'
14
+ spec.homepage = "https://github.com/TonFw/dae-material"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.9"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,7 @@
1
+ require "dae/material/version"
2
+
3
+ module Dae
4
+ module Material
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ module Dae
2
+ module Material
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ PATCH = 1
6
+ VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,166 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dae-material
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ilton Garcia dos Santos Silveira
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-04-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Simple Rails assets gem for daemonite - material
42
+ email:
43
+ - ilton_unb@hotmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".travis.yml"
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - README.md
54
+ - Rakefile
55
+ - app/assets/fonts/material-design-icons/LICENSE.txt
56
+ - app/assets/fonts/material-design-icons/Material-Design-Icons.eot
57
+ - app/assets/fonts/material-design-icons/Material-Design-Icons.svg
58
+ - app/assets/fonts/material-design-icons/Material-Design-Icons.ttf
59
+ - app/assets/fonts/material-design-icons/Material-Design-Icons.woff
60
+ - app/assets/fonts/material-design-icons/Material-Design-Icons.woff2
61
+ - app/assets/fonts/roboto/Roboto-Bold.ttf
62
+ - app/assets/fonts/roboto/Roboto-Bold.woff
63
+ - app/assets/fonts/roboto/Roboto-Bold.woff2
64
+ - app/assets/fonts/roboto/Roboto-Light.ttf
65
+ - app/assets/fonts/roboto/Roboto-Light.woff
66
+ - app/assets/fonts/roboto/Roboto-Light.woff2
67
+ - app/assets/fonts/roboto/Roboto-Medium.ttf
68
+ - app/assets/fonts/roboto/Roboto-Medium.woff
69
+ - app/assets/fonts/roboto/Roboto-Medium.woff2
70
+ - app/assets/fonts/roboto/Roboto-Regular.ttf
71
+ - app/assets/fonts/roboto/Roboto-Regular.woff
72
+ - app/assets/fonts/roboto/Roboto-Regular.woff2
73
+ - app/assets/fonts/roboto/Roboto-Thin.ttf
74
+ - app/assets/fonts/roboto/Roboto-Thin.woff
75
+ - app/assets/fonts/roboto/Roboto-Thin.woff2
76
+ - app/assets/javascripts/materialize-sprockets.js
77
+ - app/assets/javascripts/materialize.js
78
+ - app/assets/javascripts/materialize/animation.js
79
+ - app/assets/javascripts/materialize/buttons.js
80
+ - app/assets/javascripts/materialize/cards.js
81
+ - app/assets/javascripts/materialize/character_counter.js
82
+ - app/assets/javascripts/materialize/collapsible.js
83
+ - app/assets/javascripts/materialize/date_picker/picker.date.js
84
+ - app/assets/javascripts/materialize/date_picker/picker.js
85
+ - app/assets/javascripts/materialize/dropdown.js
86
+ - app/assets/javascripts/materialize/forms.js
87
+ - app/assets/javascripts/materialize/global.js
88
+ - app/assets/javascripts/materialize/hammer.min.js
89
+ - app/assets/javascripts/materialize/init.js
90
+ - app/assets/javascripts/materialize/jquery.easing.1.3.js
91
+ - app/assets/javascripts/materialize/jquery.hammer.js
92
+ - app/assets/javascripts/materialize/jquery.timeago.min.js
93
+ - app/assets/javascripts/materialize/leanModal.js
94
+ - app/assets/javascripts/materialize/materialbox.js
95
+ - app/assets/javascripts/materialize/parallax.js
96
+ - app/assets/javascripts/materialize/prism.js
97
+ - app/assets/javascripts/materialize/pushpin.js
98
+ - app/assets/javascripts/materialize/scrollFire.js
99
+ - app/assets/javascripts/materialize/scrollspy.js
100
+ - app/assets/javascripts/materialize/sideNav.js
101
+ - app/assets/javascripts/materialize/slider.js
102
+ - app/assets/javascripts/materialize/tabs.js
103
+ - app/assets/javascripts/materialize/toasts.js
104
+ - app/assets/javascripts/materialize/tooltip.js
105
+ - app/assets/javascripts/materialize/transitions.js
106
+ - app/assets/javascripts/materialize/velocity.min.js
107
+ - app/assets/javascripts/materialize/waves.js
108
+ - app/assets/stylesheets/materialize.scss
109
+ - app/assets/stylesheets/materialize/components/_buttons.scss
110
+ - app/assets/stylesheets/materialize/components/_cards.scss
111
+ - app/assets/stylesheets/materialize/components/_collapsible.scss
112
+ - app/assets/stylesheets/materialize/components/_color.scss
113
+ - app/assets/stylesheets/materialize/components/_dropdown.scss
114
+ - app/assets/stylesheets/materialize/components/_form.scss
115
+ - app/assets/stylesheets/materialize/components/_global.scss
116
+ - app/assets/stylesheets/materialize/components/_grid.scss
117
+ - app/assets/stylesheets/materialize/components/_icons-material-design.scss
118
+ - app/assets/stylesheets/materialize/components/_materialbox.scss
119
+ - app/assets/stylesheets/materialize/components/_mixins.scss
120
+ - app/assets/stylesheets/materialize/components/_modal.scss
121
+ - app/assets/stylesheets/materialize/components/_navbar.scss
122
+ - app/assets/stylesheets/materialize/components/_normalize.scss
123
+ - app/assets/stylesheets/materialize/components/_prefixer.scss
124
+ - app/assets/stylesheets/materialize/components/_preloader.scss
125
+ - app/assets/stylesheets/materialize/components/_roboto.scss
126
+ - app/assets/stylesheets/materialize/components/_sideNav.scss
127
+ - app/assets/stylesheets/materialize/components/_slider.scss
128
+ - app/assets/stylesheets/materialize/components/_table_of_contents.scss
129
+ - app/assets/stylesheets/materialize/components/_tabs.scss
130
+ - app/assets/stylesheets/materialize/components/_toast.scss
131
+ - app/assets/stylesheets/materialize/components/_tooltip.scss
132
+ - app/assets/stylesheets/materialize/components/_typography.scss
133
+ - app/assets/stylesheets/materialize/components/_variables.scss
134
+ - app/assets/stylesheets/materialize/components/_waves.scss
135
+ - app/assets/stylesheets/materialize/components/date_picker/_default.date.scss
136
+ - app/assets/stylesheets/materialize/components/date_picker/_default.scss
137
+ - app/assets/stylesheets/materialize/components/date_picker/_default.time.scss
138
+ - bin/console
139
+ - bin/setup
140
+ - dae-material.gemspec
141
+ - lib/dae/material.rb
142
+ - lib/dae/material/version.rb
143
+ homepage: https://github.com/TonFw/dae-material
144
+ licenses: []
145
+ metadata: {}
146
+ post_install_message:
147
+ rdoc_options: []
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ required_rubygems_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ requirements: []
161
+ rubyforge_project:
162
+ rubygems_version: 2.4.5
163
+ signing_key:
164
+ specification_version: 4
165
+ summary: Simple Rails assets gem for daemonite - material
166
+ test_files: []