chronopicker 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 (52) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/lib/chronopicker.rb +4 -0
  5. data/lib/chronopicker/engine.rb +7 -0
  6. data/lib/chronopicker/version.rb +3 -0
  7. data/lib/tasks/chronopicker_tasks.rake +4 -0
  8. data/test/dummy/README.rdoc +261 -0
  9. data/test/dummy/Rakefile +7 -0
  10. data/test/dummy/app/assets/javascripts/application.js +15 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  12. data/test/dummy/app/controllers/application_controller.rb +3 -0
  13. data/test/dummy/app/helpers/application_helper.rb +2 -0
  14. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  15. data/test/dummy/config.ru +4 -0
  16. data/test/dummy/config/application.rb +59 -0
  17. data/test/dummy/config/boot.rb +10 -0
  18. data/test/dummy/config/database.yml +25 -0
  19. data/test/dummy/config/environment.rb +5 -0
  20. data/test/dummy/config/environments/development.rb +37 -0
  21. data/test/dummy/config/environments/production.rb +67 -0
  22. data/test/dummy/config/environments/test.rb +37 -0
  23. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  24. data/test/dummy/config/initializers/inflections.rb +15 -0
  25. data/test/dummy/config/initializers/mime_types.rb +5 -0
  26. data/test/dummy/config/initializers/secret_token.rb +7 -0
  27. data/test/dummy/config/initializers/session_store.rb +8 -0
  28. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  29. data/test/dummy/config/locales/en.yml +5 -0
  30. data/test/dummy/config/routes.rb +58 -0
  31. data/test/dummy/db/test.sqlite3 +0 -0
  32. data/test/dummy/log/test.log +64 -0
  33. data/test/dummy/public/404.html +26 -0
  34. data/test/dummy/public/422.html +26 -0
  35. data/test/dummy/public/500.html +25 -0
  36. data/test/dummy/public/favicon.ico +0 -0
  37. data/test/dummy/script/rails +6 -0
  38. data/test/dummy/tmp/cache/assets/D0C/D00/sprockets%2F0713e7415332285b8dee2b8c746c1dbf +0 -0
  39. data/test/dummy/tmp/cache/assets/D22/010/sprockets%2Fcc77f0659a0fefd66c32800e49465f78 +0 -0
  40. data/test/dummy/tmp/cache/assets/D39/2A0/sprockets%2Fd601780ec171c08048d1bcbebf49c864 +0 -0
  41. data/test/dummy/tmp/cache/assets/D47/900/sprockets%2Fdcb194de64355931146790e7eb9cf3bb +0 -0
  42. data/test/dummy/tmp/cache/assets/D4A/670/sprockets%2F0af0d1d89d6c8d595596b08472ead0e7 +0 -0
  43. data/test/dummy/tmp/cache/assets/D64/9D0/sprockets%2Fda30e07cf7cafb52b370358ea46b0595 +0 -0
  44. data/test/dummy/tmp/cache/assets/DA0/100/sprockets%2F81bbc8f7fb727d00c9ba709494ac5ce2 +0 -0
  45. data/test/dummy/tmp/cache/assets/DA8/4F0/sprockets%2F39ae44d3cdf099805587be226c9bbead +0 -0
  46. data/test/dummy/tmp/cache/assets/DAB/5E0/sprockets%2Ff0e88b7b9db0c67200ef43b7bce998a8 +0 -0
  47. data/test/dummy/tmp/cache/assets/E20/800/sprockets%2Fbe1cdeca2a4eb8b8b7269ac27d144c2c +0 -0
  48. data/test/dummy/tmp/cache/assets/EC6/310/sprockets%2Fc8cf9f6dd6bad24ec0ebc866cfa3ddc8 +0 -0
  49. data/test/dummy/tmp/cache/sass/7da51a220b55b17a4aa153931c4a2e1960008d58/chronopicker.sassc +0 -0
  50. data/test/integration/chronopicker_integration_test.rb +17 -0
  51. data/test/test_helper.rb +14 -0
  52. metadata +242 -0
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,17 @@
1
+ require 'test_helper'
2
+
3
+ describe "static assets integration" do
4
+ it "provides our_awesome_static_asset.js on the asset pipeline" do
5
+ visit '/assets/chronopicker.js'
6
+ page.text.must_include '!function ($) {'
7
+ end
8
+
9
+ it "provides our_awesome_static_asset.css on the asset pipeline" do
10
+ visit '/assets/chronopicker.css'
11
+ page.text.must_include '.clearfix {'
12
+ end
13
+
14
+ it "provides our glyph icons on the asset pipeline" do
15
+ visit '/assets/glyphicons-halflings.png'
16
+ end
17
+ end
@@ -0,0 +1,14 @@
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
+ require 'minitest/autorun'
7
+ require "capybara/rails"
8
+
9
+ Rails.backtrace_cleaner.remove_silencers!
10
+
11
+ class IntegrationTest < MiniTest::Spec
12
+ include Capybara::DSL
13
+ register_spec_type(/integration$/, self)
14
+ end
metadata ADDED
@@ -0,0 +1,242 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chronopicker
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jake Mauer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.12
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.12
30
+ - !ruby/object:Gem::Dependency
31
+ name: sass-rails
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 3.2.1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.1
46
+ - !ruby/object:Gem::Dependency
47
+ name: coffee-rails
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 3.2.1
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 3.2.1
62
+ - !ruby/object:Gem::Dependency
63
+ name: sqlite3
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: minitest
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: capybara
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ description: bootstrap-datetimepicker converted to work with SASS as a gem for rails
111
+ email:
112
+ - jake.mauer@appdirect.com
113
+ executables: []
114
+ extensions: []
115
+ extra_rdoc_files: []
116
+ files:
117
+ - lib/chronopicker/engine.rb
118
+ - lib/chronopicker/version.rb
119
+ - lib/chronopicker.rb
120
+ - lib/tasks/chronopicker_tasks.rake
121
+ - MIT-LICENSE
122
+ - Rakefile
123
+ - README.rdoc
124
+ - test/dummy/app/assets/javascripts/application.js
125
+ - test/dummy/app/assets/stylesheets/application.css
126
+ - test/dummy/app/controllers/application_controller.rb
127
+ - test/dummy/app/helpers/application_helper.rb
128
+ - test/dummy/app/views/layouts/application.html.erb
129
+ - test/dummy/config/application.rb
130
+ - test/dummy/config/boot.rb
131
+ - test/dummy/config/database.yml
132
+ - test/dummy/config/environment.rb
133
+ - test/dummy/config/environments/development.rb
134
+ - test/dummy/config/environments/production.rb
135
+ - test/dummy/config/environments/test.rb
136
+ - test/dummy/config/initializers/backtrace_silencers.rb
137
+ - test/dummy/config/initializers/inflections.rb
138
+ - test/dummy/config/initializers/mime_types.rb
139
+ - test/dummy/config/initializers/secret_token.rb
140
+ - test/dummy/config/initializers/session_store.rb
141
+ - test/dummy/config/initializers/wrap_parameters.rb
142
+ - test/dummy/config/locales/en.yml
143
+ - test/dummy/config/routes.rb
144
+ - test/dummy/config.ru
145
+ - test/dummy/db/test.sqlite3
146
+ - test/dummy/log/test.log
147
+ - test/dummy/public/404.html
148
+ - test/dummy/public/422.html
149
+ - test/dummy/public/500.html
150
+ - test/dummy/public/favicon.ico
151
+ - test/dummy/Rakefile
152
+ - test/dummy/README.rdoc
153
+ - test/dummy/script/rails
154
+ - test/dummy/tmp/cache/assets/D0C/D00/sprockets%2F0713e7415332285b8dee2b8c746c1dbf
155
+ - test/dummy/tmp/cache/assets/D22/010/sprockets%2Fcc77f0659a0fefd66c32800e49465f78
156
+ - test/dummy/tmp/cache/assets/D39/2A0/sprockets%2Fd601780ec171c08048d1bcbebf49c864
157
+ - test/dummy/tmp/cache/assets/D47/900/sprockets%2Fdcb194de64355931146790e7eb9cf3bb
158
+ - test/dummy/tmp/cache/assets/D4A/670/sprockets%2F0af0d1d89d6c8d595596b08472ead0e7
159
+ - test/dummy/tmp/cache/assets/D64/9D0/sprockets%2Fda30e07cf7cafb52b370358ea46b0595
160
+ - test/dummy/tmp/cache/assets/DA0/100/sprockets%2F81bbc8f7fb727d00c9ba709494ac5ce2
161
+ - test/dummy/tmp/cache/assets/DA8/4F0/sprockets%2F39ae44d3cdf099805587be226c9bbead
162
+ - test/dummy/tmp/cache/assets/DAB/5E0/sprockets%2Ff0e88b7b9db0c67200ef43b7bce998a8
163
+ - test/dummy/tmp/cache/assets/E20/800/sprockets%2Fbe1cdeca2a4eb8b8b7269ac27d144c2c
164
+ - test/dummy/tmp/cache/assets/EC6/310/sprockets%2Fc8cf9f6dd6bad24ec0ebc866cfa3ddc8
165
+ - test/dummy/tmp/cache/sass/7da51a220b55b17a4aa153931c4a2e1960008d58/chronopicker.sassc
166
+ - test/integration/chronopicker_integration_test.rb
167
+ - test/test_helper.rb
168
+ homepage: http://www.appdirect.com
169
+ licenses: []
170
+ post_install_message:
171
+ rdoc_options: []
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ! '>='
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ segments:
181
+ - 0
182
+ hash: 358201200832392375
183
+ required_rubygems_version: !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - ! '>='
187
+ - !ruby/object:Gem::Version
188
+ version: '0'
189
+ segments:
190
+ - 0
191
+ hash: 358201200832392375
192
+ requirements: []
193
+ rubyforge_project:
194
+ rubygems_version: 1.8.24
195
+ signing_key:
196
+ specification_version: 3
197
+ summary: A fork of bootstrap-datetimepicker which is itself a fork of bootstrap-datepicker
198
+ test_files:
199
+ - test/dummy/app/assets/javascripts/application.js
200
+ - test/dummy/app/assets/stylesheets/application.css
201
+ - test/dummy/app/controllers/application_controller.rb
202
+ - test/dummy/app/helpers/application_helper.rb
203
+ - test/dummy/app/views/layouts/application.html.erb
204
+ - test/dummy/config/application.rb
205
+ - test/dummy/config/boot.rb
206
+ - test/dummy/config/database.yml
207
+ - test/dummy/config/environment.rb
208
+ - test/dummy/config/environments/development.rb
209
+ - test/dummy/config/environments/production.rb
210
+ - test/dummy/config/environments/test.rb
211
+ - test/dummy/config/initializers/backtrace_silencers.rb
212
+ - test/dummy/config/initializers/inflections.rb
213
+ - test/dummy/config/initializers/mime_types.rb
214
+ - test/dummy/config/initializers/secret_token.rb
215
+ - test/dummy/config/initializers/session_store.rb
216
+ - test/dummy/config/initializers/wrap_parameters.rb
217
+ - test/dummy/config/locales/en.yml
218
+ - test/dummy/config/routes.rb
219
+ - test/dummy/config.ru
220
+ - test/dummy/db/test.sqlite3
221
+ - test/dummy/log/test.log
222
+ - test/dummy/public/404.html
223
+ - test/dummy/public/422.html
224
+ - test/dummy/public/500.html
225
+ - test/dummy/public/favicon.ico
226
+ - test/dummy/Rakefile
227
+ - test/dummy/README.rdoc
228
+ - test/dummy/script/rails
229
+ - test/dummy/tmp/cache/assets/D0C/D00/sprockets%2F0713e7415332285b8dee2b8c746c1dbf
230
+ - test/dummy/tmp/cache/assets/D22/010/sprockets%2Fcc77f0659a0fefd66c32800e49465f78
231
+ - test/dummy/tmp/cache/assets/D39/2A0/sprockets%2Fd601780ec171c08048d1bcbebf49c864
232
+ - test/dummy/tmp/cache/assets/D47/900/sprockets%2Fdcb194de64355931146790e7eb9cf3bb
233
+ - test/dummy/tmp/cache/assets/D4A/670/sprockets%2F0af0d1d89d6c8d595596b08472ead0e7
234
+ - test/dummy/tmp/cache/assets/D64/9D0/sprockets%2Fda30e07cf7cafb52b370358ea46b0595
235
+ - test/dummy/tmp/cache/assets/DA0/100/sprockets%2F81bbc8f7fb727d00c9ba709494ac5ce2
236
+ - test/dummy/tmp/cache/assets/DA8/4F0/sprockets%2F39ae44d3cdf099805587be226c9bbead
237
+ - test/dummy/tmp/cache/assets/DAB/5E0/sprockets%2Ff0e88b7b9db0c67200ef43b7bce998a8
238
+ - test/dummy/tmp/cache/assets/E20/800/sprockets%2Fbe1cdeca2a4eb8b8b7269ac27d144c2c
239
+ - test/dummy/tmp/cache/assets/EC6/310/sprockets%2Fc8cf9f6dd6bad24ec0ebc866cfa3ddc8
240
+ - test/dummy/tmp/cache/sass/7da51a220b55b17a4aa153931c4a2e1960008d58/chronopicker.sassc
241
+ - test/integration/chronopicker_integration_test.rb
242
+ - test/test_helper.rb