tiny_mce_helper 0.0.3 → 0.0.4

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 (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/README +8 -0
  3. data/Rakefile +5 -4
  4. metadata +10 -9
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  *SVN*
2
2
 
3
+ *0.0.4* (June 22nd, 2008)
4
+
5
+ * Remove log files from gems
6
+
3
7
  *0.0.3* (May 5th, 2008)
4
8
 
5
9
  * Updated documentation
data/README CHANGED
@@ -169,6 +169,14 @@ the LIVE environment variable to true. For example,
169
169
 
170
170
  rake test LIVE=true
171
171
 
172
+ To run against a specific version of Rails:
173
+
174
+ rake test RAILS_FRAMEWORK_ROOT=/path/to/rails
175
+
176
+ == Dependencies
177
+
178
+ * Rails 2.0 or later
179
+
172
180
  == References
173
181
 
174
182
  This plugin provides for the installation and utilization of TinyMCE in Ruby on
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake/gempackagetask'
4
4
  require 'rake/contrib/sshpublisher'
5
5
 
6
6
  PKG_NAME = 'tiny_mce_helper'
7
- PKG_VERSION = '0.0.3'
7
+ PKG_VERSION = '0.0.4'
8
8
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
9
9
  RUBY_FORGE_PROJECT = 'pluginaweek'
10
10
 
@@ -22,6 +22,7 @@ desc 'Generate documentation for the tiny_mce_helper plugin.'
22
22
  Rake::RDocTask.new(:rdoc) do |rdoc|
23
23
  rdoc.rdoc_dir = 'rdoc'
24
24
  rdoc.title = 'TinyMCEHelper'
25
+ rdoc.template = '../rdoc_template.rb'
25
26
  rdoc.options << '--line-numbers' << '--inline-source'
26
27
  rdoc.rdoc_files.include('README')
27
28
  rdoc.rdoc_files.include('lib/**/*.rb')
@@ -33,7 +34,7 @@ spec = Gem::Specification.new do |s|
33
34
  s.platform = Gem::Platform::RUBY
34
35
  s.summary = 'Adds helper methods for creating the TinyMCE initialization script.'
35
36
 
36
- s.files = FileList['{lib,tasks,test}/**/*'].to_a + %w(CHANGELOG init.rb install.rb Rakefile README uninstall.rb)
37
+ s.files = FileList['{lib,tasks,test}/**/*'].to_a - FileList['test/app_root/log/*'].to_a + %w(CHANGELOG init.rb install.rb Rakefile README uninstall.rb)
37
38
  s.require_path = 'lib'
38
39
  s.autorequire = 'tiny_mce_helper'
39
40
  s.has_rdoc = true
@@ -61,13 +62,13 @@ task :pdoc => [:rdoc] do
61
62
  end
62
63
 
63
64
  desc 'Publish the API docs and gem'
64
- task :publish => [:pdoc, :release]
65
+ task :publish => [:pgem, :pdoc, :release]
65
66
 
66
67
  desc 'Publish the release files to RubyForge.'
67
68
  task :release => [:gem, :package] do
68
69
  require 'rubyforge'
69
70
 
70
- ruby_forge = RubyForge.new
71
+ ruby_forge = RubyForge.new.configure
71
72
  ruby_forge.login
72
73
 
73
74
  %w( gem tgz zip ).each do |ext|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny_mce_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Pfeifer
@@ -9,7 +9,7 @@ autorequire: tiny_mce_helper
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-05-05 00:00:00 -04:00
12
+ date: 2008-06-22 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -25,18 +25,19 @@ files:
25
25
  - lib/tiny_mce_helper.rb
26
26
  - tasks/tiny_mce_helper_tasks.rake
27
27
  - test/app_root
28
- - test/app_root/config
29
- - test/app_root/config/tiny_mce_options.yml
30
28
  - test/app_root/config_bak
31
29
  - test/app_root/config_bak/tiny_mce_options.yml
32
- - test/test_helper.rb
33
- - test/unit
34
- - test/unit/tiny_mce_helper_test.rb
30
+ - test/app_root/config
31
+ - test/app_root/config/tiny_mce_options.yml
32
+ - test/app_root/log
35
33
  - test/files
36
34
  - test/files/wiki.html
37
- - test/files/tinymce_3_0_8.zip
38
35
  - test/files/tinymce_3_0_6_2.zip
39
36
  - test/files/sourceforge.html
37
+ - test/files/tinymce_3_0_8.zip
38
+ - test/test_helper.rb
39
+ - test/unit
40
+ - test/unit/tiny_mce_helper_test.rb
40
41
  - CHANGELOG
41
42
  - init.rb
42
43
  - install.rb
@@ -65,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
66
  requirements: []
66
67
 
67
68
  rubyforge_project:
68
- rubygems_version: 1.1.0
69
+ rubygems_version: 1.1.1
69
70
  signing_key:
70
71
  specification_version: 2
71
72
  summary: Adds helper methods for creating the TinyMCE initialization script.