tiny_mce_helper 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +13 -0
- data/README +178 -0
- data/Rakefile +80 -0
- data/init.rb +1 -0
- data/install.rb +7 -0
- data/lib/tiny_mce_helper.rb +244 -0
- data/tasks/tiny_mce_helper_tasks.rake +21 -0
- data/test/app_root/config/tiny_mce_options.yml +119 -0
- data/test/app_root/config_bak/tiny_mce_options.yml +119 -0
- data/test/files/sourceforge.html +1271 -0
- data/test/files/tinymce_2_0_8.tgz +0 -0
- data/test/files/tinymce_2_1_1_1.tgz +0 -0
- data/test/files/wiki.html +361 -0
- data/test/test_helper.rb +18 -0
- data/test/unit/tiny_mce_helper_test.rb +323 -0
- data/uninstall.rb +2 -0
- metadata +74 -0
data/uninstall.rb
ADDED
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: tiny_mce_helper
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2007-08-20 00:00:00 -04:00
|
8
|
+
summary: Adds helper methods for creating the TinyMCE initialization script.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: info@pluginaweek.org
|
12
|
+
homepage: http://www.pluginaweek.org
|
13
|
+
rubyforge_project:
|
14
|
+
description:
|
15
|
+
autorequire: tiny_mce_helper
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Aaron Pfeifer, Neil Abraham
|
31
|
+
files:
|
32
|
+
- lib/tiny_mce_helper.rb
|
33
|
+
- tasks/tiny_mce_helper_tasks.rake
|
34
|
+
- test/test_helper.rb
|
35
|
+
- test/app_root
|
36
|
+
- test/unit
|
37
|
+
- test/files
|
38
|
+
- test/app_root/config
|
39
|
+
- test/app_root/config_bak
|
40
|
+
- test/app_root/config/tiny_mce_options.yml
|
41
|
+
- test/app_root/config_bak/tiny_mce_options.yml
|
42
|
+
- test/unit/tiny_mce_helper_test.rb
|
43
|
+
- test/files/tinymce_2_0_8.tgz
|
44
|
+
- test/files/wiki.html
|
45
|
+
- test/files/sourceforge.html
|
46
|
+
- test/files/tinymce_2_1_1_1.tgz
|
47
|
+
- CHANGELOG
|
48
|
+
- init.rb
|
49
|
+
- install.rb
|
50
|
+
- Rakefile
|
51
|
+
- README
|
52
|
+
- uninstall.rb
|
53
|
+
test_files:
|
54
|
+
- test/unit/tiny_mce_helper_test.rb
|
55
|
+
rdoc_options: []
|
56
|
+
|
57
|
+
extra_rdoc_files: []
|
58
|
+
|
59
|
+
executables: []
|
60
|
+
|
61
|
+
extensions: []
|
62
|
+
|
63
|
+
requirements: []
|
64
|
+
|
65
|
+
dependencies:
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: actionpack
|
68
|
+
version_requirement:
|
69
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 1.13.1
|
74
|
+
version:
|