bootstrap-colorpicker2-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +51 -0
  6. data/Rakefile +1 -0
  7. data/bootstrap-colorpicker2-rails.gemspec +25 -0
  8. data/lib/bootstrap-colorpicker2-rails.rb +1 -0
  9. data/lib/bootstrap/colorpicker2/rails/engine.rb +10 -0
  10. data/lib/bootstrap/colorpicker2/rails/version.rb +7 -0
  11. data/test/colorpicker2_rails_test/.gitignore +16 -0
  12. data/test/colorpicker2_rails_test/Gemfile +49 -0
  13. data/test/colorpicker2_rails_test/README.rdoc +28 -0
  14. data/test/colorpicker2_rails_test/Rakefile +6 -0
  15. data/test/colorpicker2_rails_test/app/assets/images/.keep +0 -0
  16. data/test/colorpicker2_rails_test/app/assets/javascripts/application.js +17 -0
  17. data/test/colorpicker2_rails_test/app/assets/javascripts/page.js.coffee +3 -0
  18. data/test/colorpicker2_rails_test/app/assets/stylesheets/application.css +13 -0
  19. data/test/colorpicker2_rails_test/app/assets/stylesheets/custom.css.scss +2 -0
  20. data/test/colorpicker2_rails_test/app/assets/stylesheets/page.css.scss +3 -0
  21. data/test/colorpicker2_rails_test/app/controllers/application_controller.rb +5 -0
  22. data/test/colorpicker2_rails_test/app/controllers/concerns/.keep +0 -0
  23. data/test/colorpicker2_rails_test/app/controllers/pages_controller.rb +26 -0
  24. data/test/colorpicker2_rails_test/app/helpers/application_helper.rb +2 -0
  25. data/test/colorpicker2_rails_test/app/helpers/page_helper.rb +2 -0
  26. data/test/colorpicker2_rails_test/app/mailers/.keep +0 -0
  27. data/test/colorpicker2_rails_test/app/models/.keep +0 -0
  28. data/test/colorpicker2_rails_test/app/models/concerns/.keep +0 -0
  29. data/test/colorpicker2_rails_test/app/models/page.rb +2 -0
  30. data/test/colorpicker2_rails_test/app/views/layouts/application.html.erb +14 -0
  31. data/test/colorpicker2_rails_test/app/views/pages/new.html.erb +19 -0
  32. data/test/colorpicker2_rails_test/app/views/pages/show.html.erb +3 -0
  33. data/test/colorpicker2_rails_test/bin/bundle +3 -0
  34. data/test/colorpicker2_rails_test/bin/rails +4 -0
  35. data/test/colorpicker2_rails_test/bin/rake +4 -0
  36. data/test/colorpicker2_rails_test/config.ru +4 -0
  37. data/test/colorpicker2_rails_test/config/application.rb +25 -0
  38. data/test/colorpicker2_rails_test/config/boot.rb +4 -0
  39. data/test/colorpicker2_rails_test/config/database.yml +25 -0
  40. data/test/colorpicker2_rails_test/config/environment.rb +5 -0
  41. data/test/colorpicker2_rails_test/config/environments/development.rb +29 -0
  42. data/test/colorpicker2_rails_test/config/environments/production.rb +80 -0
  43. data/test/colorpicker2_rails_test/config/environments/test.rb +36 -0
  44. data/test/colorpicker2_rails_test/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/colorpicker2_rails_test/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/test/colorpicker2_rails_test/config/initializers/inflections.rb +16 -0
  47. data/test/colorpicker2_rails_test/config/initializers/mime_types.rb +5 -0
  48. data/test/colorpicker2_rails_test/config/initializers/secret_token.rb +12 -0
  49. data/test/colorpicker2_rails_test/config/initializers/session_store.rb +3 -0
  50. data/test/colorpicker2_rails_test/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/colorpicker2_rails_test/config/locales/en.yml +23 -0
  52. data/test/colorpicker2_rails_test/config/routes.rb +60 -0
  53. data/test/colorpicker2_rails_test/db/migrate/20141004181002_create_pages.rb +11 -0
  54. data/test/colorpicker2_rails_test/db/schema.rb +24 -0
  55. data/test/colorpicker2_rails_test/db/seeds.rb +7 -0
  56. data/test/colorpicker2_rails_test/lib/assets/.keep +0 -0
  57. data/test/colorpicker2_rails_test/lib/tasks/.keep +0 -0
  58. data/test/colorpicker2_rails_test/log/.keep +0 -0
  59. data/test/colorpicker2_rails_test/public/404.html +58 -0
  60. data/test/colorpicker2_rails_test/public/422.html +58 -0
  61. data/test/colorpicker2_rails_test/public/500.html +57 -0
  62. data/test/colorpicker2_rails_test/public/favicon.ico +0 -0
  63. data/test/colorpicker2_rails_test/public/robots.txt +5 -0
  64. data/test/colorpicker2_rails_test/test/controllers/.keep +0 -0
  65. data/test/colorpicker2_rails_test/test/controllers/page_controller_test.rb +7 -0
  66. data/test/colorpicker2_rails_test/test/fixtures/.keep +0 -0
  67. data/test/colorpicker2_rails_test/test/fixtures/pages.yml +11 -0
  68. data/test/colorpicker2_rails_test/test/helpers/.keep +0 -0
  69. data/test/colorpicker2_rails_test/test/helpers/page_helper_test.rb +4 -0
  70. data/test/colorpicker2_rails_test/test/integration/.keep +0 -0
  71. data/test/colorpicker2_rails_test/test/mailers/.keep +0 -0
  72. data/test/colorpicker2_rails_test/test/models/.keep +0 -0
  73. data/test/colorpicker2_rails_test/test/models/page_test.rb +7 -0
  74. data/test/colorpicker2_rails_test/test/test_helper.rb +15 -0
  75. data/test/colorpicker2_rails_test/vendor/assets/javascripts/.keep +0 -0
  76. data/test/colorpicker2_rails_test/vendor/assets/stylesheets/.keep +0 -0
  77. data/vendor/assets/images/alpha-horizontal.png +0 -0
  78. data/vendor/assets/images/alpha.png +0 -0
  79. data/vendor/assets/images/hue-horizontal.png +0 -0
  80. data/vendor/assets/images/hue.png +0 -0
  81. data/vendor/assets/images/saturation.png +0 -0
  82. data/vendor/assets/javascripts/bootstrap-colorpicker.js +953 -0
  83. data/vendor/assets/stylesheets/bootstrap-colorpicker.css +217 -0
  84. metadata +235 -0
@@ -0,0 +1,217 @@
1
+ /*!
2
+ * Bootstrap Colorpicker
3
+ * http://mjolnic.github.io/bootstrap-colorpicker/
4
+ *
5
+ * Originally written by (c) 2012 Stefan Petre
6
+ * Licensed under the Apache License v2.0
7
+ * http://www.apache.org/licenses/LICENSE-2.0.txt
8
+ *
9
+ */
10
+
11
+ .colorpicker-saturation {
12
+ float: left;
13
+ width: 100px;
14
+ height: 100px;
15
+ cursor: crosshair;
16
+ background-image: url("saturation.png");
17
+ }
18
+
19
+ .colorpicker-saturation i {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ display: block;
24
+ width: 5px;
25
+ height: 5px;
26
+ margin: -4px 0 0 -4px;
27
+ border: 1px solid #000;
28
+ -webkit-border-radius: 5px;
29
+ -moz-border-radius: 5px;
30
+ border-radius: 5px;
31
+ }
32
+
33
+ .colorpicker-saturation i b {
34
+ display: block;
35
+ width: 5px;
36
+ height: 5px;
37
+ border: 1px solid #fff;
38
+ -webkit-border-radius: 5px;
39
+ -moz-border-radius: 5px;
40
+ border-radius: 5px;
41
+ }
42
+
43
+ .colorpicker-hue,
44
+ .colorpicker-alpha {
45
+ float: left;
46
+ width: 15px;
47
+ height: 100px;
48
+ margin-bottom: 4px;
49
+ margin-left: 4px;
50
+ cursor: row-resize;
51
+ }
52
+
53
+ .colorpicker-hue i,
54
+ .colorpicker-alpha i {
55
+ position: absolute;
56
+ top: 0;
57
+ left: 0;
58
+ display: block;
59
+ width: 100%;
60
+ height: 1px;
61
+ margin-top: -1px;
62
+ background: #000;
63
+ border-top: 1px solid #fff;
64
+ }
65
+
66
+ .colorpicker-hue {
67
+ background-image: url("hue.png");
68
+ }
69
+
70
+ .colorpicker-alpha {
71
+ display: none;
72
+ background-image: url("alpha.png");
73
+ }
74
+
75
+ .colorpicker {
76
+ top: 0;
77
+ left: 0;
78
+ z-index: 2500;
79
+ min-width: 130px;
80
+ padding: 4px;
81
+ margin-top: 1px;
82
+ -webkit-border-radius: 4px;
83
+ -moz-border-radius: 4px;
84
+ border-radius: 4px;
85
+ *zoom: 1;
86
+ }
87
+
88
+ .colorpicker:before,
89
+ .colorpicker:after {
90
+ display: table;
91
+ line-height: 0;
92
+ content: "";
93
+ }
94
+
95
+ .colorpicker:after {
96
+ clear: both;
97
+ }
98
+
99
+ .colorpicker:before {
100
+ position: absolute;
101
+ top: -7px;
102
+ left: 6px;
103
+ display: inline-block;
104
+ border-right: 7px solid transparent;
105
+ border-bottom: 7px solid #ccc;
106
+ border-left: 7px solid transparent;
107
+ border-bottom-color: rgba(0, 0, 0, 0.2);
108
+ content: '';
109
+ }
110
+
111
+ .colorpicker:after {
112
+ position: absolute;
113
+ top: -6px;
114
+ left: 7px;
115
+ display: inline-block;
116
+ border-right: 6px solid transparent;
117
+ border-bottom: 6px solid #ffffff;
118
+ border-left: 6px solid transparent;
119
+ content: '';
120
+ }
121
+
122
+ .colorpicker div {
123
+ position: relative;
124
+ }
125
+
126
+ .colorpicker.colorpicker-with-alpha {
127
+ min-width: 140px;
128
+ }
129
+
130
+ .colorpicker.colorpicker-with-alpha .colorpicker-alpha {
131
+ display: block;
132
+ }
133
+
134
+ .colorpicker-color {
135
+ height: 10px;
136
+ margin-top: 5px;
137
+ clear: both;
138
+ background-image: url("alpha.png");
139
+ background-position: 0 100%;
140
+ }
141
+
142
+ .colorpicker-color div {
143
+ height: 10px;
144
+ }
145
+
146
+ .colorpicker-element .input-group-addon i,
147
+ .colorpicker-element .add-on i {
148
+ display: inline-block;
149
+ width: 16px;
150
+ height: 16px;
151
+ vertical-align: text-top;
152
+ cursor: pointer;
153
+ }
154
+
155
+ .colorpicker.colorpicker-inline {
156
+ position: relative;
157
+ z-index: auto;
158
+ display: inline-block;
159
+ float: none;
160
+ }
161
+
162
+ .colorpicker.colorpicker-horizontal {
163
+ width: 110px;
164
+ height: auto;
165
+ min-width: 110px;
166
+ }
167
+
168
+ .colorpicker.colorpicker-horizontal .colorpicker-saturation {
169
+ margin-bottom: 4px;
170
+ }
171
+
172
+ .colorpicker.colorpicker-horizontal .colorpicker-color {
173
+ width: 100px;
174
+ }
175
+
176
+ .colorpicker.colorpicker-horizontal .colorpicker-hue,
177
+ .colorpicker.colorpicker-horizontal .colorpicker-alpha {
178
+ float: left;
179
+ width: 100px;
180
+ height: 15px;
181
+ margin-bottom: 4px;
182
+ margin-left: 0;
183
+ cursor: col-resize;
184
+ }
185
+
186
+ .colorpicker.colorpicker-horizontal .colorpicker-hue i,
187
+ .colorpicker.colorpicker-horizontal .colorpicker-alpha i {
188
+ position: absolute;
189
+ top: 0;
190
+ left: 0;
191
+ display: block;
192
+ width: 1px;
193
+ height: 15px;
194
+ margin-top: 0;
195
+ background: #ffffff;
196
+ border: none;
197
+ }
198
+
199
+ .colorpicker.colorpicker-horizontal .colorpicker-hue {
200
+ background-image: url("hue-horizontal.png");
201
+ }
202
+
203
+ .colorpicker.colorpicker-horizontal .colorpicker-alpha {
204
+ background-image: url("alpha-horizontal.png");
205
+ }
206
+
207
+ .colorpicker.colorpicker-hidden {
208
+ display: none;
209
+ }
210
+
211
+ .colorpicker.colorpicker-visible {
212
+ display: block;
213
+ }
214
+
215
+ .colorpicker-inline.colorpicker-visible {
216
+ display: inline-block;
217
+ }
metadata ADDED
@@ -0,0 +1,235 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootstrap-colorpicker2-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Scott LaBounty
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
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: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: A colorpicker for Bootstrap bundled for Rails
56
+ email:
57
+ - slabounty@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - bootstrap-colorpicker2-rails.gemspec
68
+ - lib/bootstrap-colorpicker2-rails.rb
69
+ - lib/bootstrap/colorpicker2/rails/engine.rb
70
+ - lib/bootstrap/colorpicker2/rails/version.rb
71
+ - test/colorpicker2_rails_test/.gitignore
72
+ - test/colorpicker2_rails_test/Gemfile
73
+ - test/colorpicker2_rails_test/README.rdoc
74
+ - test/colorpicker2_rails_test/Rakefile
75
+ - test/colorpicker2_rails_test/app/assets/images/.keep
76
+ - test/colorpicker2_rails_test/app/assets/javascripts/application.js
77
+ - test/colorpicker2_rails_test/app/assets/javascripts/page.js.coffee
78
+ - test/colorpicker2_rails_test/app/assets/stylesheets/application.css
79
+ - test/colorpicker2_rails_test/app/assets/stylesheets/custom.css.scss
80
+ - test/colorpicker2_rails_test/app/assets/stylesheets/page.css.scss
81
+ - test/colorpicker2_rails_test/app/controllers/application_controller.rb
82
+ - test/colorpicker2_rails_test/app/controllers/concerns/.keep
83
+ - test/colorpicker2_rails_test/app/controllers/pages_controller.rb
84
+ - test/colorpicker2_rails_test/app/helpers/application_helper.rb
85
+ - test/colorpicker2_rails_test/app/helpers/page_helper.rb
86
+ - test/colorpicker2_rails_test/app/mailers/.keep
87
+ - test/colorpicker2_rails_test/app/models/.keep
88
+ - test/colorpicker2_rails_test/app/models/concerns/.keep
89
+ - test/colorpicker2_rails_test/app/models/page.rb
90
+ - test/colorpicker2_rails_test/app/views/layouts/application.html.erb
91
+ - test/colorpicker2_rails_test/app/views/pages/new.html.erb
92
+ - test/colorpicker2_rails_test/app/views/pages/show.html.erb
93
+ - test/colorpicker2_rails_test/bin/bundle
94
+ - test/colorpicker2_rails_test/bin/rails
95
+ - test/colorpicker2_rails_test/bin/rake
96
+ - test/colorpicker2_rails_test/config.ru
97
+ - test/colorpicker2_rails_test/config/application.rb
98
+ - test/colorpicker2_rails_test/config/boot.rb
99
+ - test/colorpicker2_rails_test/config/database.yml
100
+ - test/colorpicker2_rails_test/config/environment.rb
101
+ - test/colorpicker2_rails_test/config/environments/development.rb
102
+ - test/colorpicker2_rails_test/config/environments/production.rb
103
+ - test/colorpicker2_rails_test/config/environments/test.rb
104
+ - test/colorpicker2_rails_test/config/initializers/backtrace_silencers.rb
105
+ - test/colorpicker2_rails_test/config/initializers/filter_parameter_logging.rb
106
+ - test/colorpicker2_rails_test/config/initializers/inflections.rb
107
+ - test/colorpicker2_rails_test/config/initializers/mime_types.rb
108
+ - test/colorpicker2_rails_test/config/initializers/secret_token.rb
109
+ - test/colorpicker2_rails_test/config/initializers/session_store.rb
110
+ - test/colorpicker2_rails_test/config/initializers/wrap_parameters.rb
111
+ - test/colorpicker2_rails_test/config/locales/en.yml
112
+ - test/colorpicker2_rails_test/config/routes.rb
113
+ - test/colorpicker2_rails_test/db/migrate/20141004181002_create_pages.rb
114
+ - test/colorpicker2_rails_test/db/schema.rb
115
+ - test/colorpicker2_rails_test/db/seeds.rb
116
+ - test/colorpicker2_rails_test/lib/assets/.keep
117
+ - test/colorpicker2_rails_test/lib/tasks/.keep
118
+ - test/colorpicker2_rails_test/log/.keep
119
+ - test/colorpicker2_rails_test/public/404.html
120
+ - test/colorpicker2_rails_test/public/422.html
121
+ - test/colorpicker2_rails_test/public/500.html
122
+ - test/colorpicker2_rails_test/public/favicon.ico
123
+ - test/colorpicker2_rails_test/public/robots.txt
124
+ - test/colorpicker2_rails_test/test/controllers/.keep
125
+ - test/colorpicker2_rails_test/test/controllers/page_controller_test.rb
126
+ - test/colorpicker2_rails_test/test/fixtures/.keep
127
+ - test/colorpicker2_rails_test/test/fixtures/pages.yml
128
+ - test/colorpicker2_rails_test/test/helpers/.keep
129
+ - test/colorpicker2_rails_test/test/helpers/page_helper_test.rb
130
+ - test/colorpicker2_rails_test/test/integration/.keep
131
+ - test/colorpicker2_rails_test/test/mailers/.keep
132
+ - test/colorpicker2_rails_test/test/models/.keep
133
+ - test/colorpicker2_rails_test/test/models/page_test.rb
134
+ - test/colorpicker2_rails_test/test/test_helper.rb
135
+ - test/colorpicker2_rails_test/vendor/assets/javascripts/.keep
136
+ - test/colorpicker2_rails_test/vendor/assets/stylesheets/.keep
137
+ - vendor/assets/images/alpha-horizontal.png
138
+ - vendor/assets/images/alpha.png
139
+ - vendor/assets/images/hue-horizontal.png
140
+ - vendor/assets/images/hue.png
141
+ - vendor/assets/images/saturation.png
142
+ - vendor/assets/javascripts/bootstrap-colorpicker.js
143
+ - vendor/assets/stylesheets/bootstrap-colorpicker.css
144
+ homepage: https://github.com/slabounty/bootstrap-colorpicker2-rails
145
+ licenses:
146
+ - MIT
147
+ metadata: {}
148
+ post_install_message:
149
+ rdoc_options: []
150
+ require_paths:
151
+ - lib
152
+ required_ruby_version: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - '>='
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
157
+ required_rubygems_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - '>='
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ requirements: []
163
+ rubyforge_project:
164
+ rubygems_version: 2.4.3
165
+ signing_key:
166
+ specification_version: 4
167
+ summary: A colorpicker for Bootstrap bundled for Rails
168
+ test_files:
169
+ - test/colorpicker2_rails_test/.gitignore
170
+ - test/colorpicker2_rails_test/Gemfile
171
+ - test/colorpicker2_rails_test/README.rdoc
172
+ - test/colorpicker2_rails_test/Rakefile
173
+ - test/colorpicker2_rails_test/app/assets/images/.keep
174
+ - test/colorpicker2_rails_test/app/assets/javascripts/application.js
175
+ - test/colorpicker2_rails_test/app/assets/javascripts/page.js.coffee
176
+ - test/colorpicker2_rails_test/app/assets/stylesheets/application.css
177
+ - test/colorpicker2_rails_test/app/assets/stylesheets/custom.css.scss
178
+ - test/colorpicker2_rails_test/app/assets/stylesheets/page.css.scss
179
+ - test/colorpicker2_rails_test/app/controllers/application_controller.rb
180
+ - test/colorpicker2_rails_test/app/controllers/concerns/.keep
181
+ - test/colorpicker2_rails_test/app/controllers/pages_controller.rb
182
+ - test/colorpicker2_rails_test/app/helpers/application_helper.rb
183
+ - test/colorpicker2_rails_test/app/helpers/page_helper.rb
184
+ - test/colorpicker2_rails_test/app/mailers/.keep
185
+ - test/colorpicker2_rails_test/app/models/.keep
186
+ - test/colorpicker2_rails_test/app/models/concerns/.keep
187
+ - test/colorpicker2_rails_test/app/models/page.rb
188
+ - test/colorpicker2_rails_test/app/views/layouts/application.html.erb
189
+ - test/colorpicker2_rails_test/app/views/pages/new.html.erb
190
+ - test/colorpicker2_rails_test/app/views/pages/show.html.erb
191
+ - test/colorpicker2_rails_test/bin/bundle
192
+ - test/colorpicker2_rails_test/bin/rails
193
+ - test/colorpicker2_rails_test/bin/rake
194
+ - test/colorpicker2_rails_test/config.ru
195
+ - test/colorpicker2_rails_test/config/application.rb
196
+ - test/colorpicker2_rails_test/config/boot.rb
197
+ - test/colorpicker2_rails_test/config/database.yml
198
+ - test/colorpicker2_rails_test/config/environment.rb
199
+ - test/colorpicker2_rails_test/config/environments/development.rb
200
+ - test/colorpicker2_rails_test/config/environments/production.rb
201
+ - test/colorpicker2_rails_test/config/environments/test.rb
202
+ - test/colorpicker2_rails_test/config/initializers/backtrace_silencers.rb
203
+ - test/colorpicker2_rails_test/config/initializers/filter_parameter_logging.rb
204
+ - test/colorpicker2_rails_test/config/initializers/inflections.rb
205
+ - test/colorpicker2_rails_test/config/initializers/mime_types.rb
206
+ - test/colorpicker2_rails_test/config/initializers/secret_token.rb
207
+ - test/colorpicker2_rails_test/config/initializers/session_store.rb
208
+ - test/colorpicker2_rails_test/config/initializers/wrap_parameters.rb
209
+ - test/colorpicker2_rails_test/config/locales/en.yml
210
+ - test/colorpicker2_rails_test/config/routes.rb
211
+ - test/colorpicker2_rails_test/db/migrate/20141004181002_create_pages.rb
212
+ - test/colorpicker2_rails_test/db/schema.rb
213
+ - test/colorpicker2_rails_test/db/seeds.rb
214
+ - test/colorpicker2_rails_test/lib/assets/.keep
215
+ - test/colorpicker2_rails_test/lib/tasks/.keep
216
+ - test/colorpicker2_rails_test/log/.keep
217
+ - test/colorpicker2_rails_test/public/404.html
218
+ - test/colorpicker2_rails_test/public/422.html
219
+ - test/colorpicker2_rails_test/public/500.html
220
+ - test/colorpicker2_rails_test/public/favicon.ico
221
+ - test/colorpicker2_rails_test/public/robots.txt
222
+ - test/colorpicker2_rails_test/test/controllers/.keep
223
+ - test/colorpicker2_rails_test/test/controllers/page_controller_test.rb
224
+ - test/colorpicker2_rails_test/test/fixtures/.keep
225
+ - test/colorpicker2_rails_test/test/fixtures/pages.yml
226
+ - test/colorpicker2_rails_test/test/helpers/.keep
227
+ - test/colorpicker2_rails_test/test/helpers/page_helper_test.rb
228
+ - test/colorpicker2_rails_test/test/integration/.keep
229
+ - test/colorpicker2_rails_test/test/mailers/.keep
230
+ - test/colorpicker2_rails_test/test/models/.keep
231
+ - test/colorpicker2_rails_test/test/models/page_test.rb
232
+ - test/colorpicker2_rails_test/test/test_helper.rb
233
+ - test/colorpicker2_rails_test/vendor/assets/javascripts/.keep
234
+ - test/colorpicker2_rails_test/vendor/assets/stylesheets/.keep
235
+ has_rdoc: