bootstrap-material-theme 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +32 -0
  5. data/README.md +59 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/LICENSE.txt +428 -0
  8. data/app/assets/fonts/Material-Design-Icons.eot +0 -0
  9. data/app/assets/fonts/Material-Design-Icons.svg +769 -0
  10. data/app/assets/fonts/Material-Design-Icons.ttf +0 -0
  11. data/app/assets/fonts/Material-Design-Icons.woff +0 -0
  12. data/app/assets/javascripts/bootstrap-material-design/index.js +4 -0
  13. data/app/assets/javascripts/bootstrap-material-design/jquery.nouislider.js +668 -0
  14. data/app/assets/javascripts/bootstrap-material-design/material.js +227 -0
  15. data/app/assets/javascripts/bootstrap-material-design/ripples.js +324 -0
  16. data/app/assets/javascripts/bootstrap-material-design/snackbar.js +153 -0
  17. data/app/assets/stylesheets/_bootstrap-material-design.scss +3 -0
  18. data/app/assets/stylesheets/bootstrap-material-design/index.css +5 -0
  19. data/app/assets/stylesheets/bootstrap-material-design/material.css.erb +8209 -0
  20. data/app/assets/stylesheets/bootstrap-material-design/ripples.css +35 -0
  21. data/app/assets/stylesheets/bootstrap-material-design/snackbar.css +35 -0
  22. data/bootstrap-material-design.gemspec +21 -0
  23. data/lib/bootstrap-material-design.rb +3 -0
  24. data/lib/bootstrap-material-design/engine.rb +4 -0
  25. data/test/dummy_app/Gemfile +14 -0
  26. data/test/dummy_app/README.rdoc +3 -0
  27. data/test/dummy_app/Rakefile +6 -0
  28. data/test/dummy_app/app/assets/images/.keep +0 -0
  29. data/test/dummy_app/app/assets/images/download.png +0 -0
  30. data/test/dummy_app/app/assets/images/gittip.png +0 -0
  31. data/test/dummy_app/app/assets/images/issue.png +0 -0
  32. data/test/dummy_app/app/assets/javascripts/application.js +18 -0
  33. data/test/dummy_app/app/assets/javascripts/bootstrap.js.coffee +3 -0
  34. data/test/dummy_app/app/assets/stylesheets/application.css +16 -0
  35. data/test/dummy_app/app/assets/stylesheets/bootstrap-md.css.scss +187 -0
  36. data/test/dummy_app/app/controllers/application_controller.rb +5 -0
  37. data/test/dummy_app/app/controllers/bootstrap_controller.rb +4 -0
  38. data/test/dummy_app/app/controllers/concerns/.keep +0 -0
  39. data/test/dummy_app/app/helpers/application_helper.rb +2 -0
  40. data/test/dummy_app/app/helpers/bootstrap_helper.rb +2 -0
  41. data/test/dummy_app/app/mailers/.keep +0 -0
  42. data/test/dummy_app/app/models/.keep +0 -0
  43. data/test/dummy_app/app/models/concerns/.keep +0 -0
  44. data/test/dummy_app/app/views/bootstrap/index.html.erb +3160 -0
  45. data/test/dummy_app/app/views/layouts/application.html.erb +16 -0
  46. data/test/dummy_app/bin/bundle +3 -0
  47. data/test/dummy_app/bin/rails +4 -0
  48. data/test/dummy_app/bin/rake +4 -0
  49. data/test/dummy_app/config.ru +4 -0
  50. data/test/dummy_app/config/application.rb +23 -0
  51. data/test/dummy_app/config/boot.rb +4 -0
  52. data/test/dummy_app/config/database.yml +25 -0
  53. data/test/dummy_app/config/environment.rb +5 -0
  54. data/test/dummy_app/config/environments/development.rb +37 -0
  55. data/test/dummy_app/config/environments/production.rb +78 -0
  56. data/test/dummy_app/config/environments/test.rb +39 -0
  57. data/test/dummy_app/config/initializers/assets.rb +8 -0
  58. data/test/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  59. data/test/dummy_app/config/initializers/cookies_serializer.rb +3 -0
  60. data/test/dummy_app/config/initializers/filter_parameter_logging.rb +4 -0
  61. data/test/dummy_app/config/initializers/inflections.rb +16 -0
  62. data/test/dummy_app/config/initializers/mime_types.rb +4 -0
  63. data/test/dummy_app/config/initializers/session_store.rb +3 -0
  64. data/test/dummy_app/config/initializers/wrap_parameters.rb +14 -0
  65. data/test/dummy_app/config/locales/en.yml +23 -0
  66. data/test/dummy_app/config/routes.rb +59 -0
  67. data/test/dummy_app/config/secrets.yml +22 -0
  68. data/test/dummy_app/db/development.sqlite3 +0 -0
  69. data/test/dummy_app/db/seeds.rb +7 -0
  70. data/test/dummy_app/lib/assets/.keep +0 -0
  71. data/test/dummy_app/lib/tasks/.keep +0 -0
  72. data/test/dummy_app/public/404.html +67 -0
  73. data/test/dummy_app/public/422.html +67 -0
  74. data/test/dummy_app/public/500.html +66 -0
  75. data/test/dummy_app/public/favicon.ico +0 -0
  76. data/test/dummy_app/public/robots.txt +5 -0
  77. metadata +186 -0
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
@@ -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,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
metadata ADDED
@@ -0,0 +1,186 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootstrap-material-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Paul King
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bootstrap-sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ description:
28
+ email: freedomlijinfa@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - ".gitignore"
34
+ - Gemfile
35
+ - LICENSE
36
+ - README.md
37
+ - Rakefile
38
+ - app/assets/fonts/LICENSE.txt
39
+ - app/assets/fonts/Material-Design-Icons.eot
40
+ - app/assets/fonts/Material-Design-Icons.svg
41
+ - app/assets/fonts/Material-Design-Icons.ttf
42
+ - app/assets/fonts/Material-Design-Icons.woff
43
+ - app/assets/javascripts/bootstrap-material-design/index.js
44
+ - app/assets/javascripts/bootstrap-material-design/jquery.nouislider.js
45
+ - app/assets/javascripts/bootstrap-material-design/material.js
46
+ - app/assets/javascripts/bootstrap-material-design/ripples.js
47
+ - app/assets/javascripts/bootstrap-material-design/snackbar.js
48
+ - app/assets/stylesheets/_bootstrap-material-design.scss
49
+ - app/assets/stylesheets/bootstrap-material-design/index.css
50
+ - app/assets/stylesheets/bootstrap-material-design/material.css.erb
51
+ - app/assets/stylesheets/bootstrap-material-design/ripples.css
52
+ - app/assets/stylesheets/bootstrap-material-design/snackbar.css
53
+ - bootstrap-material-design.gemspec
54
+ - lib/bootstrap-material-design.rb
55
+ - lib/bootstrap-material-design/engine.rb
56
+ - test/dummy_app/Gemfile
57
+ - test/dummy_app/README.rdoc
58
+ - test/dummy_app/Rakefile
59
+ - test/dummy_app/app/assets/images/.keep
60
+ - test/dummy_app/app/assets/images/download.png
61
+ - test/dummy_app/app/assets/images/gittip.png
62
+ - test/dummy_app/app/assets/images/issue.png
63
+ - test/dummy_app/app/assets/javascripts/application.js
64
+ - test/dummy_app/app/assets/javascripts/bootstrap.js.coffee
65
+ - test/dummy_app/app/assets/stylesheets/application.css
66
+ - test/dummy_app/app/assets/stylesheets/bootstrap-md.css.scss
67
+ - test/dummy_app/app/controllers/application_controller.rb
68
+ - test/dummy_app/app/controllers/bootstrap_controller.rb
69
+ - test/dummy_app/app/controllers/concerns/.keep
70
+ - test/dummy_app/app/helpers/application_helper.rb
71
+ - test/dummy_app/app/helpers/bootstrap_helper.rb
72
+ - test/dummy_app/app/mailers/.keep
73
+ - test/dummy_app/app/models/.keep
74
+ - test/dummy_app/app/models/concerns/.keep
75
+ - test/dummy_app/app/views/bootstrap/index.html.erb
76
+ - test/dummy_app/app/views/layouts/application.html.erb
77
+ - test/dummy_app/bin/bundle
78
+ - test/dummy_app/bin/rails
79
+ - test/dummy_app/bin/rake
80
+ - test/dummy_app/config.ru
81
+ - test/dummy_app/config/application.rb
82
+ - test/dummy_app/config/boot.rb
83
+ - test/dummy_app/config/database.yml
84
+ - test/dummy_app/config/environment.rb
85
+ - test/dummy_app/config/environments/development.rb
86
+ - test/dummy_app/config/environments/production.rb
87
+ - test/dummy_app/config/environments/test.rb
88
+ - test/dummy_app/config/initializers/assets.rb
89
+ - test/dummy_app/config/initializers/backtrace_silencers.rb
90
+ - test/dummy_app/config/initializers/cookies_serializer.rb
91
+ - test/dummy_app/config/initializers/filter_parameter_logging.rb
92
+ - test/dummy_app/config/initializers/inflections.rb
93
+ - test/dummy_app/config/initializers/mime_types.rb
94
+ - test/dummy_app/config/initializers/session_store.rb
95
+ - test/dummy_app/config/initializers/wrap_parameters.rb
96
+ - test/dummy_app/config/locales/en.yml
97
+ - test/dummy_app/config/routes.rb
98
+ - test/dummy_app/config/secrets.yml
99
+ - test/dummy_app/db/development.sqlite3
100
+ - test/dummy_app/db/seeds.rb
101
+ - test/dummy_app/lib/assets/.keep
102
+ - test/dummy_app/lib/tasks/.keep
103
+ - test/dummy_app/log/.keep
104
+ - test/dummy_app/public/404.html
105
+ - test/dummy_app/public/422.html
106
+ - test/dummy_app/public/500.html
107
+ - test/dummy_app/public/favicon.ico
108
+ - test/dummy_app/public/robots.txt
109
+ homepage: https://github.com/Aufree/bootstrap-material-design
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.4.8
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Material Design for Bootstrap
133
+ test_files:
134
+ - test/dummy_app/Gemfile
135
+ - test/dummy_app/README.rdoc
136
+ - test/dummy_app/Rakefile
137
+ - test/dummy_app/app/assets/images/.keep
138
+ - test/dummy_app/app/assets/images/download.png
139
+ - test/dummy_app/app/assets/images/gittip.png
140
+ - test/dummy_app/app/assets/images/issue.png
141
+ - test/dummy_app/app/assets/javascripts/application.js
142
+ - test/dummy_app/app/assets/javascripts/bootstrap.js.coffee
143
+ - test/dummy_app/app/assets/stylesheets/application.css
144
+ - test/dummy_app/app/assets/stylesheets/bootstrap-md.css.scss
145
+ - test/dummy_app/app/controllers/application_controller.rb
146
+ - test/dummy_app/app/controllers/bootstrap_controller.rb
147
+ - test/dummy_app/app/controllers/concerns/.keep
148
+ - test/dummy_app/app/helpers/application_helper.rb
149
+ - test/dummy_app/app/helpers/bootstrap_helper.rb
150
+ - test/dummy_app/app/mailers/.keep
151
+ - test/dummy_app/app/models/.keep
152
+ - test/dummy_app/app/models/concerns/.keep
153
+ - test/dummy_app/app/views/bootstrap/index.html.erb
154
+ - test/dummy_app/app/views/layouts/application.html.erb
155
+ - test/dummy_app/bin/bundle
156
+ - test/dummy_app/bin/rails
157
+ - test/dummy_app/bin/rake
158
+ - test/dummy_app/config.ru
159
+ - test/dummy_app/config/application.rb
160
+ - test/dummy_app/config/boot.rb
161
+ - test/dummy_app/config/database.yml
162
+ - test/dummy_app/config/environment.rb
163
+ - test/dummy_app/config/environments/development.rb
164
+ - test/dummy_app/config/environments/production.rb
165
+ - test/dummy_app/config/environments/test.rb
166
+ - test/dummy_app/config/initializers/assets.rb
167
+ - test/dummy_app/config/initializers/backtrace_silencers.rb
168
+ - test/dummy_app/config/initializers/cookies_serializer.rb
169
+ - test/dummy_app/config/initializers/filter_parameter_logging.rb
170
+ - test/dummy_app/config/initializers/inflections.rb
171
+ - test/dummy_app/config/initializers/mime_types.rb
172
+ - test/dummy_app/config/initializers/session_store.rb
173
+ - test/dummy_app/config/initializers/wrap_parameters.rb
174
+ - test/dummy_app/config/locales/en.yml
175
+ - test/dummy_app/config/routes.rb
176
+ - test/dummy_app/config/secrets.yml
177
+ - test/dummy_app/db/development.sqlite3
178
+ - test/dummy_app/db/seeds.rb
179
+ - test/dummy_app/lib/assets/.keep
180
+ - test/dummy_app/lib/tasks/.keep
181
+ - test/dummy_app/log/.keep
182
+ - test/dummy_app/public/404.html
183
+ - test/dummy_app/public/422.html
184
+ - test/dummy_app/public/500.html
185
+ - test/dummy_app/public/favicon.ico
186
+ - test/dummy_app/public/robots.txt