bcalloway-wysihat-engine 0.1.8

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 (50) hide show
  1. data/.gitignore +6 -0
  2. data/CHANGELOG +51 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.textile +24 -0
  5. data/Rakefile +78 -0
  6. data/TODO +4 -0
  7. data/VERSION +1 -0
  8. data/app/controllers/wysihat_files_controller.rb +35 -0
  9. data/app/helpers/wysihat_files_helper.rb +2 -0
  10. data/app/models/wysihat_file.rb +9 -0
  11. data/app/views/wysihat_files/_form.html.erb +13 -0
  12. data/app/views/wysihat_files/_wysihat_file.html.erb +11 -0
  13. data/app/views/wysihat_files/index.html.erb +5 -0
  14. data/app/views/wysihat_files/new.html.erb +1 -0
  15. data/config/locales/en.yml +5 -0
  16. data/generators/wysihat/templates/css/facebox.css +60 -0
  17. data/generators/wysihat/templates/css/wysihat.css +44 -0
  18. data/generators/wysihat/templates/images/facebox/b.png +0 -0
  19. data/generators/wysihat/templates/images/facebox/bl.png +0 -0
  20. data/generators/wysihat/templates/images/facebox/br.png +0 -0
  21. data/generators/wysihat/templates/images/facebox/closelabel.gif +0 -0
  22. data/generators/wysihat/templates/images/facebox/loading.gif +0 -0
  23. data/generators/wysihat/templates/images/facebox/tl.png +0 -0
  24. data/generators/wysihat/templates/images/facebox/tr.png +0 -0
  25. data/generators/wysihat/templates/images/icons/arrow_redo.png +0 -0
  26. data/generators/wysihat/templates/images/icons/arrow_undo.png +0 -0
  27. data/generators/wysihat/templates/images/icons/exclamation.png +0 -0
  28. data/generators/wysihat/templates/images/icons/image.png +0 -0
  29. data/generators/wysihat/templates/images/icons/link.png +0 -0
  30. data/generators/wysihat/templates/images/icons/page_code.png +0 -0
  31. data/generators/wysihat/templates/images/icons/text_align_center.png +0 -0
  32. data/generators/wysihat/templates/images/icons/text_align_left.png +0 -0
  33. data/generators/wysihat/templates/images/icons/text_align_right.png +0 -0
  34. data/generators/wysihat/templates/images/icons/text_bold.png +0 -0
  35. data/generators/wysihat/templates/images/icons/text_italic.png +0 -0
  36. data/generators/wysihat/templates/images/icons/text_list_bullets.png +0 -0
  37. data/generators/wysihat/templates/images/icons/text_list_numbers.png +0 -0
  38. data/generators/wysihat/templates/images/icons/text_strikethrough.png +0 -0
  39. data/generators/wysihat/templates/images/icons/text_underline.png +0 -0
  40. data/generators/wysihat/templates/javascripts/facebox.js +180 -0
  41. data/generators/wysihat/templates/javascripts/wysihat.js +2073 -0
  42. data/generators/wysihat/templates/javascripts/wysihat_engine.js +101 -0
  43. data/generators/wysihat/templates/javascripts/wysihat_engine_pack.js +1 -0
  44. data/generators/wysihat/templates/migrations/create_wysihat_files.rb +15 -0
  45. data/generators/wysihat/templates/sass/facebox.sass +108 -0
  46. data/generators/wysihat/templates/sass/wysihat.sass +66 -0
  47. data/generators/wysihat/wysihat_generator.rb +83 -0
  48. data/lib/wysihat-engine.rb +38 -0
  49. data/wysihat-engine.gemspec +90 -0
  50. metadata +123 -0
metadata ADDED
@@ -0,0 +1,123 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bcalloway-wysihat-engine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.8
5
+ platform: ruby
6
+ authors:
7
+ - Jeff Kreeftmeijer
8
+ - Brandon Calloway
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-11-12 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: yui-compressor
18
+ type: :development
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 0.9.1
25
+ version:
26
+ - !ruby/object:Gem::Dependency
27
+ name: paperclip
28
+ type: :runtime
29
+ version_requirement:
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 2.3.1
35
+ version:
36
+ description: Fork of the original wysihat-engine, by Jeff Kreeftmeijer. A Rails engine to help integrate the 37signals WysiHat rich text editor to your application.
37
+ email: brandon@brandoncalloway.com
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files:
43
+ - README.textile
44
+ files:
45
+ - .gitignore
46
+ - CHANGELOG
47
+ - MIT-LICENSE
48
+ - README.textile
49
+ - Rakefile
50
+ - TODO
51
+ - VERSION
52
+ - app/controllers/wysihat_files_controller.rb
53
+ - app/helpers/wysihat_files_helper.rb
54
+ - app/models/wysihat_file.rb
55
+ - app/views/wysihat_files/_form.html.erb
56
+ - app/views/wysihat_files/_wysihat_file.html.erb
57
+ - app/views/wysihat_files/index.html.erb
58
+ - app/views/wysihat_files/new.html.erb
59
+ - config/locales/en.yml
60
+ - generators/wysihat/templates/css/facebox.css
61
+ - generators/wysihat/templates/css/wysihat.css
62
+ - generators/wysihat/templates/images/facebox/b.png
63
+ - generators/wysihat/templates/images/facebox/bl.png
64
+ - generators/wysihat/templates/images/facebox/br.png
65
+ - generators/wysihat/templates/images/facebox/closelabel.gif
66
+ - generators/wysihat/templates/images/facebox/loading.gif
67
+ - generators/wysihat/templates/images/facebox/tl.png
68
+ - generators/wysihat/templates/images/facebox/tr.png
69
+ - generators/wysihat/templates/images/icons/arrow_redo.png
70
+ - generators/wysihat/templates/images/icons/arrow_undo.png
71
+ - generators/wysihat/templates/images/icons/exclamation.png
72
+ - generators/wysihat/templates/images/icons/image.png
73
+ - generators/wysihat/templates/images/icons/link.png
74
+ - generators/wysihat/templates/images/icons/page_code.png
75
+ - generators/wysihat/templates/images/icons/text_align_center.png
76
+ - generators/wysihat/templates/images/icons/text_align_left.png
77
+ - generators/wysihat/templates/images/icons/text_align_right.png
78
+ - generators/wysihat/templates/images/icons/text_bold.png
79
+ - generators/wysihat/templates/images/icons/text_italic.png
80
+ - generators/wysihat/templates/images/icons/text_list_bullets.png
81
+ - generators/wysihat/templates/images/icons/text_list_numbers.png
82
+ - generators/wysihat/templates/images/icons/text_strikethrough.png
83
+ - generators/wysihat/templates/images/icons/text_underline.png
84
+ - generators/wysihat/templates/javascripts/facebox.js
85
+ - generators/wysihat/templates/javascripts/wysihat.js
86
+ - generators/wysihat/templates/javascripts/wysihat_engine.js
87
+ - generators/wysihat/templates/javascripts/wysihat_engine_pack.js
88
+ - generators/wysihat/templates/migrations/create_wysihat_files.rb
89
+ - generators/wysihat/templates/sass/facebox.sass
90
+ - generators/wysihat/templates/sass/wysihat.sass
91
+ - generators/wysihat/wysihat_generator.rb
92
+ - lib/wysihat-engine.rb
93
+ - wysihat-engine.gemspec
94
+ has_rdoc: true
95
+ homepage: http://github.com/bcalloway/wysihat-engine
96
+ licenses: []
97
+
98
+ post_install_message:
99
+ rdoc_options:
100
+ - --charset=UTF-8
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: "0"
108
+ version:
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: "0"
114
+ version:
115
+ requirements: []
116
+
117
+ rubyforge_project:
118
+ rubygems_version: 1.3.5
119
+ signing_key:
120
+ specification_version: 3
121
+ summary: A Rails engine to help integrate the 37signals WysiHat rich text editor to your application.
122
+ test_files: []
123
+