markitup_rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/.document +5 -0
  2. data/Gemfile +15 -0
  3. data/Gemfile.lock +100 -0
  4. data/LICENSE.txt +30 -0
  5. data/README.rdoc +98 -0
  6. data/Rakefile +53 -0
  7. data/VERSION +1 -0
  8. data/app/assets/images/sets/default/bold.png +0 -0
  9. data/app/assets/images/sets/default/clean.png +0 -0
  10. data/app/assets/images/sets/default/image.png +0 -0
  11. data/app/assets/images/sets/default/italic.png +0 -0
  12. data/app/assets/images/sets/default/link.png +0 -0
  13. data/app/assets/images/sets/default/list-bullet.png +0 -0
  14. data/app/assets/images/sets/default/list-numeric.png +0 -0
  15. data/app/assets/images/sets/default/picture.png +0 -0
  16. data/app/assets/images/sets/default/preview.png +0 -0
  17. data/app/assets/images/sets/default/stroke.png +0 -0
  18. data/app/assets/images/sets/markdown/bold.png +0 -0
  19. data/app/assets/images/sets/markdown/code.png +0 -0
  20. data/app/assets/images/sets/markdown/h1.png +0 -0
  21. data/app/assets/images/sets/markdown/h2.png +0 -0
  22. data/app/assets/images/sets/markdown/h3.png +0 -0
  23. data/app/assets/images/sets/markdown/h4.png +0 -0
  24. data/app/assets/images/sets/markdown/h5.png +0 -0
  25. data/app/assets/images/sets/markdown/h6.png +0 -0
  26. data/app/assets/images/sets/markdown/italic.png +0 -0
  27. data/app/assets/images/sets/markdown/link.png +0 -0
  28. data/app/assets/images/sets/markdown/list-bullet.png +0 -0
  29. data/app/assets/images/sets/markdown/list-numeric.png +0 -0
  30. data/app/assets/images/sets/markdown/picture.png +0 -0
  31. data/app/assets/images/sets/markdown/preview.png +0 -0
  32. data/app/assets/images/sets/markdown/quotes.png +0 -0
  33. data/app/assets/images/skins/markitup/bg-container.png +0 -0
  34. data/app/assets/images/skins/markitup/bg-editor-bbcode.png +0 -0
  35. data/app/assets/images/skins/markitup/bg-editor-dotclear.png +0 -0
  36. data/app/assets/images/skins/markitup/bg-editor-html.png +0 -0
  37. data/app/assets/images/skins/markitup/bg-editor-json.png +0 -0
  38. data/app/assets/images/skins/markitup/bg-editor-markdown.png +0 -0
  39. data/app/assets/images/skins/markitup/bg-editor-textile.png +0 -0
  40. data/app/assets/images/skins/markitup/bg-editor-wiki.png +0 -0
  41. data/app/assets/images/skins/markitup/bg-editor-xml.png +0 -0
  42. data/app/assets/images/skins/markitup/bg-editor.png +0 -0
  43. data/app/assets/images/skins/markitup/handle.png +0 -0
  44. data/app/assets/images/skins/markitup/menu.png +0 -0
  45. data/app/assets/images/skins/markitup/submenu.png +0 -0
  46. data/app/assets/images/skins/simple/handle.png +0 -0
  47. data/app/assets/images/skins/simple/menu.png +0 -0
  48. data/app/assets/images/skins/simple/submenu.png +0 -0
  49. data/app/assets/javascripts/jquery.markitup.js +593 -0
  50. data/app/assets/javascripts/sets/default/set.js +30 -0
  51. data/app/assets/javascripts/sets/markdown/set.js +48 -0
  52. data/app/assets/stylesheets/sets/default/style.css +34 -0
  53. data/app/assets/stylesheets/sets/markdown/style.css +54 -0
  54. data/app/assets/stylesheets/skins/markitup/style.css.scss +152 -0
  55. data/app/assets/stylesheets/skins/simple/style.css.scss +122 -0
  56. data/app/assets/stylesheets/templates/preview.css +5 -0
  57. data/app/controllers/markitup/parsers_controller.rb +6 -0
  58. data/app/views/markitup/parsers/markdown.html.erb +11 -0
  59. data/config/routes.rb +5 -0
  60. data/lib/engine.rb +8 -0
  61. data/lib/markitup_rails.rb +15 -0
  62. data/markitup_rails.gemspec +118 -0
  63. data/test/helper.rb +18 -0
  64. data/test/test_markitup_rails.rb +7 -0
  65. metadata +219 -0
metadata ADDED
@@ -0,0 +1,219 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: markitup_rails
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Jeff Wigal
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-01-22 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 5
29
+ segments:
30
+ - 3
31
+ - 1
32
+ version: "3.1"
33
+ prerelease: false
34
+ type: :runtime
35
+ requirement: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: bluecloth
38
+ version_requirements: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ prerelease: false
48
+ type: :runtime
49
+ requirement: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: shoulda
52
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ prerelease: false
62
+ type: :development
63
+ requirement: *id003
64
+ - !ruby/object:Gem::Dependency
65
+ name: bundler
66
+ version_requirements: &id004 !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ~>
70
+ - !ruby/object:Gem::Version
71
+ hash: 23
72
+ segments:
73
+ - 1
74
+ - 0
75
+ - 0
76
+ version: 1.0.0
77
+ prerelease: false
78
+ type: :development
79
+ requirement: *id004
80
+ - !ruby/object:Gem::Dependency
81
+ name: jeweler
82
+ version_requirements: &id005 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ hash: 7
88
+ segments:
89
+ - 1
90
+ - 6
91
+ - 4
92
+ version: 1.6.4
93
+ prerelease: false
94
+ type: :development
95
+ requirement: *id005
96
+ - !ruby/object:Gem::Dependency
97
+ name: rcov
98
+ version_requirements: &id006 !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ hash: 3
104
+ segments:
105
+ - 0
106
+ version: "0"
107
+ prerelease: false
108
+ type: :development
109
+ requirement: *id006
110
+ description: Rails 3.1 engine that allows you to integrate the markItUp editor into the asset pipeline
111
+ email: jeff@assignr.com
112
+ executables: []
113
+
114
+ extensions: []
115
+
116
+ extra_rdoc_files:
117
+ - LICENSE.txt
118
+ - README.rdoc
119
+ files:
120
+ - .document
121
+ - Gemfile
122
+ - Gemfile.lock
123
+ - LICENSE.txt
124
+ - README.rdoc
125
+ - Rakefile
126
+ - VERSION
127
+ - app/assets/images/sets/default/bold.png
128
+ - app/assets/images/sets/default/clean.png
129
+ - app/assets/images/sets/default/image.png
130
+ - app/assets/images/sets/default/italic.png
131
+ - app/assets/images/sets/default/link.png
132
+ - app/assets/images/sets/default/list-bullet.png
133
+ - app/assets/images/sets/default/list-numeric.png
134
+ - app/assets/images/sets/default/picture.png
135
+ - app/assets/images/sets/default/preview.png
136
+ - app/assets/images/sets/default/stroke.png
137
+ - app/assets/images/sets/markdown/bold.png
138
+ - app/assets/images/sets/markdown/code.png
139
+ - app/assets/images/sets/markdown/h1.png
140
+ - app/assets/images/sets/markdown/h2.png
141
+ - app/assets/images/sets/markdown/h3.png
142
+ - app/assets/images/sets/markdown/h4.png
143
+ - app/assets/images/sets/markdown/h5.png
144
+ - app/assets/images/sets/markdown/h6.png
145
+ - app/assets/images/sets/markdown/italic.png
146
+ - app/assets/images/sets/markdown/link.png
147
+ - app/assets/images/sets/markdown/list-bullet.png
148
+ - app/assets/images/sets/markdown/list-numeric.png
149
+ - app/assets/images/sets/markdown/picture.png
150
+ - app/assets/images/sets/markdown/preview.png
151
+ - app/assets/images/sets/markdown/quotes.png
152
+ - app/assets/images/skins/markitup/bg-container.png
153
+ - app/assets/images/skins/markitup/bg-editor-bbcode.png
154
+ - app/assets/images/skins/markitup/bg-editor-dotclear.png
155
+ - app/assets/images/skins/markitup/bg-editor-html.png
156
+ - app/assets/images/skins/markitup/bg-editor-json.png
157
+ - app/assets/images/skins/markitup/bg-editor-markdown.png
158
+ - app/assets/images/skins/markitup/bg-editor-textile.png
159
+ - app/assets/images/skins/markitup/bg-editor-wiki.png
160
+ - app/assets/images/skins/markitup/bg-editor-xml.png
161
+ - app/assets/images/skins/markitup/bg-editor.png
162
+ - app/assets/images/skins/markitup/handle.png
163
+ - app/assets/images/skins/markitup/menu.png
164
+ - app/assets/images/skins/markitup/submenu.png
165
+ - app/assets/images/skins/simple/handle.png
166
+ - app/assets/images/skins/simple/menu.png
167
+ - app/assets/images/skins/simple/submenu.png
168
+ - app/assets/javascripts/jquery.markitup.js
169
+ - app/assets/javascripts/sets/default/set.js
170
+ - app/assets/javascripts/sets/markdown/set.js
171
+ - app/assets/stylesheets/sets/default/style.css
172
+ - app/assets/stylesheets/sets/markdown/style.css
173
+ - app/assets/stylesheets/skins/markitup/style.css.scss
174
+ - app/assets/stylesheets/skins/simple/style.css.scss
175
+ - app/assets/stylesheets/templates/preview.css
176
+ - app/controllers/markitup/parsers_controller.rb
177
+ - app/views/markitup/parsers/markdown.html.erb
178
+ - config/routes.rb
179
+ - lib/engine.rb
180
+ - lib/markitup_rails.rb
181
+ - markitup_rails.gemspec
182
+ - test/helper.rb
183
+ - test/test_markitup_rails.rb
184
+ has_rdoc: true
185
+ homepage: http://github.com/jwigal/markitup_rails
186
+ licenses:
187
+ - MIT
188
+ post_install_message:
189
+ rdoc_options: []
190
+
191
+ require_paths:
192
+ - lib
193
+ required_ruby_version: !ruby/object:Gem::Requirement
194
+ none: false
195
+ requirements:
196
+ - - ">="
197
+ - !ruby/object:Gem::Version
198
+ hash: 3
199
+ segments:
200
+ - 0
201
+ version: "0"
202
+ required_rubygems_version: !ruby/object:Gem::Requirement
203
+ none: false
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ hash: 3
208
+ segments:
209
+ - 0
210
+ version: "0"
211
+ requirements: []
212
+
213
+ rubyforge_project:
214
+ rubygems_version: 1.5.2
215
+ signing_key:
216
+ specification_version: 3
217
+ summary: Rails 3.1 engine that allows you to integrate the markItUp editor into the asset pipeline
218
+ test_files: []
219
+