Skip to content

Commit

Permalink
Release: 0.1.0 - Plugin can now be installed as a gem, which auto cop…
Browse files Browse the repository at this point in the history
…ies the files into place when server is started. Big thanks to Alexander Semyonov for this work.
  • Loading branch information
Kieran Pilkington committed Sep 17, 2009
1 parent 993f803 commit 4c73c95
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
File renamed without changes.
12 changes: 0 additions & 12 deletions DEV_UPGRADE_NOTES

This file was deleted.

10 changes: 10 additions & 0 deletions DEV_UPGRADE_NOTES.rdoc
@@ -0,0 +1,10 @@
= Updating the bundled TinyMCE

1. Download the new TinyMCE tarball and extract it to your Desktop (or other easily accessible location)
2. Delete the copy of TinyMCE in the plugin at lib/tiny_mce/assets/tiny_mce (this ensures old/removed files are deleted)
3. Copy the source files of TinyMCE (not the documentation) to lib/tiny_mce/assets/tiny_mce (so in that folder you should have a tiny_mce.js file)
4. Update the CHANGELOG_PLUGIN.rdoc to say what you upgraded from, what you upgraded to, and your name
5. Update CHANGELOG_TINYMCE (simply download and overwrite the contents with that of http://tinymce.moxiecode.com/js/tinymce/changelog.txt)
6. Update the 'Bundled TinyMCE version' value at the bottom of README.rdoc
7. Update lib/tiny_mce/valid_tinymce_options.yml with any new options, or remove old ones, as described in the tinymce changelog
8. Commit, push, and send pull request to http://github.com/kete/tiny_mce
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -10,8 +10,8 @@ begin
gem.description = %Q{Gem that allows easy implementation of the TinyMCE editor into your applications.}
gem.email = 'kieran@katipo.co.nz'
gem.homepage = 'http://github.com/kete/tiny_mce'
gem.authors = ['Blake Watters', 'Kieran Pilkington', 'Alexander Semyonov']
gem.extra_rdoc_files = ['README.rdoc', 'SPELLCHECKING_PLUGIN.rdoc']
gem.authors = ['Blake Watters', 'Kieran Pilkington', 'Sergio Cambra', 'Alexander Semyonov']
gem.extra_rdoc_files = ['README.rdoc', 'SPELLCHECKING_PLUGIN.rdoc', 'CHANGELOG_PLUGIN.rdoc', 'DEV_UPGRADE_NOTES.rdoc']
gem.rdoc_options << '--exclude=lib/tiny_mce/assets'
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Expand Down
10 changes: 6 additions & 4 deletions tiny_mce.gemspec
Expand Up @@ -8,19 +8,21 @@ Gem::Specification.new do |s|
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Blake Watters", "Kieran Pilkington", "Alexander Semyonov"]
s.authors = ["Blake Watters", "Kieran Pilkington", "Sergio Cambra", "Alexander Semyonov"]
s.date = %q{2009-09-17}
s.description = %q{Gem that allows easy implementation of the TinyMCE editor into your applications.}
s.email = %q{kieran@katipo.co.nz}
s.extra_rdoc_files = [
"README.rdoc",
"CHANGELOG_PLUGIN.rdoc",
"DEV_UPGRADE_NOTES.rdoc",
"README.rdoc",
"SPELLCHECKING_PLUGIN.rdoc"
]
s.files = [
".gitignore",
"CHANGELOG_PLUGIN",
"CHANGELOG_PLUGIN.rdoc",
"CHANGELOG_TINYMCE",
"DEV_UPGRADE_NOTES",
"DEV_UPGRADE_NOTES.rdoc",
"README.rdoc",
"Rakefile",
"SPELLCHECKING_PLUGIN.rdoc",
Expand Down

0 comments on commit 4c73c95

Please sign in to comment.