clipster 0.1.0

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 (69) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +47 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/clipster/glyphicons-halflings-white.png +0 -0
  5. data/app/assets/images/clipster/glyphicons-halflings.png +0 -0
  6. data/app/assets/javascripts/clipster/application.js +15 -0
  7. data/app/assets/javascripts/clipster/bootstrap.js +2027 -0
  8. data/app/assets/javascripts/clipster/bootstrap.min.js +6 -0
  9. data/app/assets/javascripts/clipster/clip.js +2 -0
  10. data/app/assets/stylesheets/clipster/application.css +16 -0
  11. data/app/assets/stylesheets/clipster/bootstrap.css +5774 -0
  12. data/app/assets/stylesheets/clipster/clip.css +4 -0
  13. data/app/controllers/clipster/application_controller.rb +7 -0
  14. data/app/controllers/clipster/clips_controller.rb +41 -0
  15. data/app/helpers/clipster/application_helper.rb +4 -0
  16. data/app/helpers/clipster/clip_helper.rb +4 -0
  17. data/app/models/clipster/clip.rb +15 -0
  18. data/app/views/clipster/clips/create.html.erb +37 -0
  19. data/app/views/clipster/clips/list.html.erb +33 -0
  20. data/app/views/clipster/clips/show.html.erb +6 -0
  21. data/app/views/layouts/clipster/application.html.erb +43 -0
  22. data/config/routes.rb +8 -0
  23. data/db/migrate/20121004010757_create_clipster_clips.rb +16 -0
  24. data/db/migrate/20121007154400_add_hash_index_to_clips.rb +13 -0
  25. data/db/migrate/20121007155125_populate_clip_defaults.rb +21 -0
  26. data/db/migrate/20121007162741_rename_hash_to_url_hash.rb +9 -0
  27. data/db/migrate/20121007223358_remove_default_from_language.rb +9 -0
  28. data/db/migrate/20121007223631_set_default_title_to_untitled.rb +9 -0
  29. data/lib/clipster/engine.rb +8 -0
  30. data/lib/clipster/version.rb +3 -0
  31. data/lib/clipster.rb +4 -0
  32. data/lib/tasks/clipster_tasks.rake +4 -0
  33. data/test/clipster_test.rb +7 -0
  34. data/test/dummy/README.rdoc +261 -0
  35. data/test/dummy/Rakefile +7 -0
  36. data/test/dummy/app/assets/javascripts/application.js +15 -0
  37. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  38. data/test/dummy/app/controllers/application_controller.rb +3 -0
  39. data/test/dummy/app/helpers/application_helper.rb +2 -0
  40. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  41. data/test/dummy/config/application.rb +59 -0
  42. data/test/dummy/config/boot.rb +10 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +37 -0
  46. data/test/dummy/config/environments/production.rb +67 -0
  47. data/test/dummy/config/environments/test.rb +37 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/inflections.rb +15 -0
  50. data/test/dummy/config/initializers/mime_types.rb +5 -0
  51. data/test/dummy/config/initializers/secret_token.rb +7 -0
  52. data/test/dummy/config/initializers/session_store.rb +8 -0
  53. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  54. data/test/dummy/config/locales/en.yml +5 -0
  55. data/test/dummy/config/routes.rb +4 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/log/development.log +1 -0
  58. data/test/dummy/public/404.html +26 -0
  59. data/test/dummy/public/422.html +26 -0
  60. data/test/dummy/public/500.html +25 -0
  61. data/test/dummy/public/favicon.ico +0 -0
  62. data/test/dummy/script/rails +6 -0
  63. data/test/fixtures/clipster/clips.yml +11 -0
  64. data/test/functional/clipster/clip_controller_test.rb +9 -0
  65. data/test/integration/navigation_test.rb +10 -0
  66. data/test/test_helper.rb +15 -0
  67. data/test/unit/clipster/clip_test.rb +9 -0
  68. data/test/unit/helpers/clipster/clip_helper_test.rb +6 -0
  69. metadata +236 -0
metadata ADDED
@@ -0,0 +1,236 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: clipster
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kyle Bock
9
+ - Daniel White
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-10-07 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 3.2.8
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: 3.2.8
31
+ - !ruby/object:Gem::Dependency
32
+ name: coderay
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: dynamic_form
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: jquery-rails
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ - !ruby/object:Gem::Dependency
80
+ name: sqlite3
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ type: :development
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ description: ! "Cipster is in beta currently. We are actively adding more features
96
+ to it. \n The 0.1.0 should add basic code snippet functionality
97
+ within your app. To use Clipster,\n add clipster to your Gemfile,
98
+ bundle install, then add \n 'mount Clipster::Engine, :at => \"/clipster\"'
99
+ to your routes.rb file. You should now have \n clipster available
100
+ to you at /clipster"
101
+ email:
102
+ - kylewbock@gmail.com
103
+ executables: []
104
+ extensions: []
105
+ extra_rdoc_files: []
106
+ files:
107
+ - app/assets/images/clipster/glyphicons-halflings-white.png
108
+ - app/assets/images/clipster/glyphicons-halflings.png
109
+ - app/assets/javascripts/clipster/application.js
110
+ - app/assets/javascripts/clipster/bootstrap.js
111
+ - app/assets/javascripts/clipster/bootstrap.min.js
112
+ - app/assets/javascripts/clipster/clip.js
113
+ - app/assets/stylesheets/clipster/application.css
114
+ - app/assets/stylesheets/clipster/bootstrap.css
115
+ - app/assets/stylesheets/clipster/clip.css
116
+ - app/controllers/clipster/application_controller.rb
117
+ - app/controllers/clipster/clips_controller.rb
118
+ - app/helpers/clipster/application_helper.rb
119
+ - app/helpers/clipster/clip_helper.rb
120
+ - app/models/clipster/clip.rb
121
+ - app/views/clipster/clips/create.html.erb
122
+ - app/views/clipster/clips/list.html.erb
123
+ - app/views/clipster/clips/show.html.erb
124
+ - app/views/layouts/clipster/application.html.erb
125
+ - config/routes.rb
126
+ - db/migrate/20121004010757_create_clipster_clips.rb
127
+ - db/migrate/20121007154400_add_hash_index_to_clips.rb
128
+ - db/migrate/20121007155125_populate_clip_defaults.rb
129
+ - db/migrate/20121007162741_rename_hash_to_url_hash.rb
130
+ - db/migrate/20121007223358_remove_default_from_language.rb
131
+ - db/migrate/20121007223631_set_default_title_to_untitled.rb
132
+ - lib/clipster/engine.rb
133
+ - lib/clipster/version.rb
134
+ - lib/clipster.rb
135
+ - lib/tasks/clipster_tasks.rake
136
+ - MIT-LICENSE
137
+ - Rakefile
138
+ - README.rdoc
139
+ - test/clipster_test.rb
140
+ - test/dummy/app/assets/javascripts/application.js
141
+ - test/dummy/app/assets/stylesheets/application.css
142
+ - test/dummy/app/controllers/application_controller.rb
143
+ - test/dummy/app/helpers/application_helper.rb
144
+ - test/dummy/app/views/layouts/application.html.erb
145
+ - test/dummy/config/application.rb
146
+ - test/dummy/config/boot.rb
147
+ - test/dummy/config/database.yml
148
+ - test/dummy/config/environment.rb
149
+ - test/dummy/config/environments/development.rb
150
+ - test/dummy/config/environments/production.rb
151
+ - test/dummy/config/environments/test.rb
152
+ - test/dummy/config/initializers/backtrace_silencers.rb
153
+ - test/dummy/config/initializers/inflections.rb
154
+ - test/dummy/config/initializers/mime_types.rb
155
+ - test/dummy/config/initializers/secret_token.rb
156
+ - test/dummy/config/initializers/session_store.rb
157
+ - test/dummy/config/initializers/wrap_parameters.rb
158
+ - test/dummy/config/locales/en.yml
159
+ - test/dummy/config/routes.rb
160
+ - test/dummy/config.ru
161
+ - test/dummy/log/development.log
162
+ - test/dummy/public/404.html
163
+ - test/dummy/public/422.html
164
+ - test/dummy/public/500.html
165
+ - test/dummy/public/favicon.ico
166
+ - test/dummy/Rakefile
167
+ - test/dummy/README.rdoc
168
+ - test/dummy/script/rails
169
+ - test/fixtures/clipster/clips.yml
170
+ - test/functional/clipster/clip_controller_test.rb
171
+ - test/integration/navigation_test.rb
172
+ - test/test_helper.rb
173
+ - test/unit/clipster/clip_test.rb
174
+ - test/unit/helpers/clipster/clip_helper_test.rb
175
+ homepage: http://github.com/kwbock/clipster
176
+ licenses: []
177
+ post_install_message:
178
+ rdoc_options: []
179
+ require_paths:
180
+ - lib
181
+ required_ruby_version: !ruby/object:Gem::Requirement
182
+ none: false
183
+ requirements:
184
+ - - ! '>='
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ required_rubygems_version: !ruby/object:Gem::Requirement
188
+ none: false
189
+ requirements:
190
+ - - ! '>='
191
+ - !ruby/object:Gem::Version
192
+ version: '0'
193
+ requirements: []
194
+ rubyforge_project:
195
+ rubygems_version: 1.8.24
196
+ signing_key:
197
+ specification_version: 3
198
+ summary: Provides sharable clipboard functionality via an engine to an existing rails
199
+ app.
200
+ test_files:
201
+ - test/clipster_test.rb
202
+ - test/dummy/app/assets/javascripts/application.js
203
+ - test/dummy/app/assets/stylesheets/application.css
204
+ - test/dummy/app/controllers/application_controller.rb
205
+ - test/dummy/app/helpers/application_helper.rb
206
+ - test/dummy/app/views/layouts/application.html.erb
207
+ - test/dummy/config/application.rb
208
+ - test/dummy/config/boot.rb
209
+ - test/dummy/config/database.yml
210
+ - test/dummy/config/environment.rb
211
+ - test/dummy/config/environments/development.rb
212
+ - test/dummy/config/environments/production.rb
213
+ - test/dummy/config/environments/test.rb
214
+ - test/dummy/config/initializers/backtrace_silencers.rb
215
+ - test/dummy/config/initializers/inflections.rb
216
+ - test/dummy/config/initializers/mime_types.rb
217
+ - test/dummy/config/initializers/secret_token.rb
218
+ - test/dummy/config/initializers/session_store.rb
219
+ - test/dummy/config/initializers/wrap_parameters.rb
220
+ - test/dummy/config/locales/en.yml
221
+ - test/dummy/config/routes.rb
222
+ - test/dummy/config.ru
223
+ - test/dummy/log/development.log
224
+ - test/dummy/public/404.html
225
+ - test/dummy/public/422.html
226
+ - test/dummy/public/500.html
227
+ - test/dummy/public/favicon.ico
228
+ - test/dummy/Rakefile
229
+ - test/dummy/README.rdoc
230
+ - test/dummy/script/rails
231
+ - test/fixtures/clipster/clips.yml
232
+ - test/functional/clipster/clip_controller_test.rb
233
+ - test/integration/navigation_test.rb
234
+ - test/test_helper.rb
235
+ - test/unit/clipster/clip_test.rb
236
+ - test/unit/helpers/clipster/clip_helper_test.rb