tiny_mce 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG_PLUGIN.rdoc +13 -1
- data/DEV_UPGRADE_NOTES.rdoc +7 -5
- data/README.rdoc +1 -1
- data/Rakefile +0 -30
- data/init.rb +1 -0
- data/{tasks → lib/tasks}/tiny_mce.rake +1 -1
- data/lib/tiny_mce.rb +17 -7
- data/lib/tiny_mce/configuration.rb +23 -13
- data/lib/tiny_mce/helpers.rb +1 -1
- data/lib/tiny_mce/railtie.rb +13 -0
- data/lib/tiny_mce/valid_tinymce_langs.yml +75 -0
- data/tiny_mce.gemspec +13 -1418
- metadata +21 -26
- data/.gitignore +0 -5
- data/VERSION +0 -1
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 3
|
9
|
+
version: 0.1.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Blake Watters
|
@@ -18,7 +18,7 @@ autorequire:
|
|
18
18
|
bindir: bin
|
19
19
|
cert_chain: []
|
20
20
|
|
21
|
-
date: 2010-
|
21
|
+
date: 2010-04-13 00:00:00 +12:00
|
22
22
|
default_executable:
|
23
23
|
dependencies: []
|
24
24
|
|
@@ -34,18 +34,7 @@ extra_rdoc_files:
|
|
34
34
|
- README.rdoc
|
35
35
|
- SPELLCHECKING_PLUGIN.rdoc
|
36
36
|
files:
|
37
|
-
- .
|
38
|
-
- CHANGELOG_PLUGIN.rdoc
|
39
|
-
- CHANGELOG_TINYMCE
|
40
|
-
- DEV_UPGRADE_NOTES.rdoc
|
41
|
-
- LICENSE
|
42
|
-
- README.rdoc
|
43
|
-
- Rakefile
|
44
|
-
- SPELLCHECKING_PLUGIN.rdoc
|
45
|
-
- VERSION
|
46
|
-
- init.rb
|
47
|
-
- install.rb
|
48
|
-
- lib/tiny_mce.rb
|
37
|
+
- lib/tasks/tiny_mce.rake
|
49
38
|
- lib/tiny_mce/assets/tiny_mce/langs/ar.js
|
50
39
|
- lib/tiny_mce/assets/tiny_mce/langs/az.js
|
51
40
|
- lib/tiny_mce/assets/tiny_mce/langs/be.js
|
@@ -1398,16 +1387,20 @@ files:
|
|
1398
1387
|
- lib/tiny_mce/configuration.rb
|
1399
1388
|
- lib/tiny_mce/exceptions.rb
|
1400
1389
|
- lib/tiny_mce/helpers.rb
|
1390
|
+
- lib/tiny_mce/railtie.rb
|
1401
1391
|
- lib/tiny_mce/spell_checker.rb
|
1392
|
+
- lib/tiny_mce/valid_tinymce_langs.yml
|
1402
1393
|
- lib/tiny_mce/valid_tinymce_options.yml
|
1403
|
-
-
|
1404
|
-
-
|
1405
|
-
-
|
1406
|
-
-
|
1407
|
-
-
|
1408
|
-
-
|
1409
|
-
-
|
1410
|
-
-
|
1394
|
+
- lib/tiny_mce.rb
|
1395
|
+
- CHANGELOG_PLUGIN.rdoc
|
1396
|
+
- CHANGELOG_TINYMCE
|
1397
|
+
- DEV_UPGRADE_NOTES.rdoc
|
1398
|
+
- LICENSE
|
1399
|
+
- Rakefile
|
1400
|
+
- README.rdoc
|
1401
|
+
- SPELLCHECKING_PLUGIN.rdoc
|
1402
|
+
- init.rb
|
1403
|
+
- install.rb
|
1411
1404
|
- tiny_mce.gemspec
|
1412
1405
|
has_rdoc: true
|
1413
1406
|
homepage: http://github.com/kete/tiny_mce
|
@@ -1431,15 +1424,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1431
1424
|
- - ">="
|
1432
1425
|
- !ruby/object:Gem::Version
|
1433
1426
|
segments:
|
1434
|
-
-
|
1435
|
-
|
1427
|
+
- 1
|
1428
|
+
- 3
|
1429
|
+
- 4
|
1430
|
+
version: 1.3.4
|
1436
1431
|
requirements: []
|
1437
1432
|
|
1438
1433
|
rubyforge_project:
|
1439
1434
|
rubygems_version: 1.3.6
|
1440
1435
|
signing_key:
|
1441
1436
|
specification_version: 3
|
1442
|
-
summary: TinyMCE editor for your rails applications
|
1437
|
+
summary: TinyMCE editor for your rails applications.
|
1443
1438
|
test_files:
|
1444
1439
|
- test/functional/full_tiny_mce_controller_test.rb
|
1445
1440
|
- test/functional/multi_configuration_tiny_mce_controller_test.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.1.2
|