<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,6 @@
 == master
 
+* Remove the PluginAWeek namespace
 * Update tests to use mocha
 * Update tests to use ActionView::TestCase
 </diff>
      <filename>CHANGELOG.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -149,7 +149,7 @@ will generate the following javascript:
     'content_css' : '/stylesheets/tiny_mce_content.css'
   });
 
-To see additional initialization helpers, see the API for PluginAWeek::TinyMCEHelper
+To see additional initialization helpers, see the API for TinyMCEHelper
 
 == Testing
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 # Install TinyMCE
 puts 'Installing TinyMCE...'
-PluginAWeek::TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'])
+TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'])
 
 # Update the configuration options
 puts 'Updating TinyMCE configuration options...'
-PluginAWeek::TinyMCEHelper.update_options
+TinyMCEHelper.update_options</diff>
      <filename>install.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,265 +1,263 @@
-module PluginAWeek #:nodoc:
-  # Adds helper methods for generating the TinyMCE initialization script
-  # within your views
-  module TinyMCEHelper
-    # The path to the file which contains all valid options that can be used
-    # to configure TinyMCE
-    OPTIONS_FILE_PATH = &quot;#{Rails.root}/config/tiny_mce_options.yml&quot;
-    
-    # A regular expression matching options that are dynamic (i.e. they can
-    # vary on an integer or string basis)
-    DYNAMIC_OPTIONS = /theme_advanced_buttons|theme_advanced_container/
-    
-    # Whether or not to use verbose output
-    mattr_accessor :verbose
-    @@verbose = true
-    
-    # A list of all valid options that can be used to configure TinyMCE
-    mattr_accessor :valid_options
-    @@valid_options = File.exists?(OPTIONS_FILE_PATH) ? File.open(OPTIONS_FILE_PATH) {|f| YAML.load(f.read)} : []
-    
-    class &lt;&lt; self
-      # Installs TinyMCE by downloading it and adding it to your application's
-      # javascripts folder.
-      # 
-      # Configuration options:
-      # * +version+ - The version of TinyMCE to install. Default is the latest version.
-      # * +target+ - The path to install TinyMCE to, relative to the project root. Default is &quot;public/javascripts/tiny_mce&quot;
-      # * +force+ - Whether to install TinyMCE, regardless of whether it already exists on the filesystem.
-      # 
-      # == Versions
-      # 
-      # By default, this will install the latest version of TinyMCE.  You can
-      # install a specific version of TinyMCE (if you are using an old API) by
-      # passing in the version number.
-      # 
-      # For example,
-      #   PluginAWeek::TinyMCEHelper.install                      # Installs the latest version
-      #   PluginAWeek::TinyMCEHelper.install(:version =&gt; '2.0.8') # Installs version 2.0.8
-      # 
-      # An exception will be raised if the specified version cannot be found.
-      # 
-      # == Target path
-      # 
-      # By default, this will install TinyMCE into Rails.root/public/javascripts/tiny_mce.
-      # If you want to install it to a different directory, you can pass in a
-      # parameter with the relative path from Rails.root.
-      # 
-      # For example,
-      #   PluginAWeek::TinyMCEHelper.install(:target =&gt; 'public/javascripts/richtext')
-      # 
-      # == Conflicting paths
-      # 
-      # If TinyMCE is found to already be installed on the filesystem, a prompt
-      # will be displayed for whether to overwrite the existing directory.  This
-      # prompt can be automatically skipped by passing in the :force option.
-      def install(options = {})
-        options.assert_valid_keys(:version, :target, :force)
-        options.reverse_merge!(:force =&gt; false)
-        
-        version = options[:version]
-        base_target = options[:target] || 'public/javascripts/tiny_mce'
-        source_path = 'tinymce'
-        target_path = File.expand_path(File.join(Rails.root, base_target))
-        
-        # If TinyMCE is already installed, make sure the user wants to continue
-        if !options[:force] &amp;&amp; File.exists?(target_path)
-          print &quot;TinyMCE already installed in #{target_path}. Overwrite? (y/n): &quot;
-          while !%w(y n).include?(option = STDIN.gets.chop)
-            print &quot;Invalid option. Overwrite #{target_path}? (y/n): &quot;
-          end
-          
-          return if option == 'n'
-        end
-        
-        # Get the url of the TinyMCE version
-        require 'hpricot'
-        require 'open-uri'
-        
-        puts &quot;Finding url of TinyMCE-#{version || 'latest'} download...&quot; if verbose
-        doc = Hpricot(open('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430'))
-        if version
-          url_version = version.gsub('.', '_')
-          file_element = (doc/'tr[@id*=&quot;rel0_&quot;] a').detect {|file| file.innerHTML =~ /#{url_version}.zip$/}
-          raise ArgumentError, &quot;Could not find TinyMCE version #{version}&quot; if !file_element
-        else
-          file_element = (doc/'tr[@id^=&quot;pkg0_1rel0_&quot;] a').detect {|file| file.innerHTML.to_s =~ /tinymce_([\d_]+).zip$/}
-          raise ArgumentError, 'Could not find latest TinyMCE version' if !file_element
-          
-          version = $1.gsub('_', '.')
+# Adds helper methods for generating the TinyMCE initialization script
+# within your views
+module TinyMCEHelper
+  # The path to the file which contains all valid options that can be used
+  # to configure TinyMCE
+  OPTIONS_FILE_PATH = &quot;#{Rails.root}/config/tiny_mce_options.yml&quot;
+  
+  # A regular expression matching options that are dynamic (i.e. they can
+  # vary on an integer or string basis)
+  DYNAMIC_OPTIONS = /theme_advanced_buttons|theme_advanced_container/
+  
+  # Whether or not to use verbose output
+  mattr_accessor :verbose
+  @@verbose = true
+  
+  # A list of all valid options that can be used to configure TinyMCE
+  mattr_accessor :valid_options
+  @@valid_options = File.exists?(OPTIONS_FILE_PATH) ? File.open(OPTIONS_FILE_PATH) {|f| YAML.load(f.read)} : []
+  
+  class &lt;&lt; self
+    # Installs TinyMCE by downloading it and adding it to your application's
+    # javascripts folder.
+    # 
+    # Configuration options:
+    # * +version+ - The version of TinyMCE to install. Default is the latest version.
+    # * +target+ - The path to install TinyMCE to, relative to the project root. Default is &quot;public/javascripts/tiny_mce&quot;
+    # * +force+ - Whether to install TinyMCE, regardless of whether it already exists on the filesystem.
+    # 
+    # == Versions
+    # 
+    # By default, this will install the latest version of TinyMCE.  You can
+    # install a specific version of TinyMCE (if you are using an old API) by
+    # passing in the version number.
+    # 
+    # For example,
+    #   TinyMCEHelper.install                      # Installs the latest version
+    #   TinyMCEHelper.install(:version =&gt; '2.0.8') # Installs version 2.0.8
+    # 
+    # An exception will be raised if the specified version cannot be found.
+    # 
+    # == Target path
+    # 
+    # By default, this will install TinyMCE into Rails.root/public/javascripts/tiny_mce.
+    # If you want to install it to a different directory, you can pass in a
+    # parameter with the relative path from Rails.root.
+    # 
+    # For example,
+    #   TinyMCEHelper.install(:target =&gt; 'public/javascripts/richtext')
+    # 
+    # == Conflicting paths
+    # 
+    # If TinyMCE is found to already be installed on the filesystem, a prompt
+    # will be displayed for whether to overwrite the existing directory.  This
+    # prompt can be automatically skipped by passing in the :force option.
+    def install(options = {})
+      options.assert_valid_keys(:version, :target, :force)
+      options.reverse_merge!(:force =&gt; false)
+      
+      version = options[:version]
+      base_target = options[:target] || 'public/javascripts/tiny_mce'
+      source_path = 'tinymce'
+      target_path = File.expand_path(File.join(Rails.root, base_target))
+      
+      # If TinyMCE is already installed, make sure the user wants to continue
+      if !options[:force] &amp;&amp; File.exists?(target_path)
+        print &quot;TinyMCE already installed in #{target_path}. Overwrite? (y/n): &quot;
+        while !%w(y n).include?(option = STDIN.gets.chop)
+          print &quot;Invalid option. Overwrite #{target_path}? (y/n): &quot;
         end
         
-        filename = file_element.innerHTML
-        file_url = file_element['href']
-        
-        # Download the file
-        puts &quot;Downloading TinyMCE-#{version} source from #{file_url}...&quot; if verbose
-        open(file_url) do |file|
-          file_path = file.path
-          
-          # Extract and install
-          puts &quot;Extracting source from #{file_path}...&quot; if verbose
-          
-          require 'zip/zip'
-          require 'zip/zipfilesystem'
-          
-          Zip::ZipFile.open(file_path) do |zipfile|
-            zipfile.entries.each do |entry|
-              if match = /tinymce\/jscripts\/tiny_mce\/(.*)/.match(entry.name)
-                FileUtils.mkdir_p(&quot;#{target_path}/#{File.dirname(match[1])}&quot;)
-                entry.extract(&quot;#{target_path}/#{match[1]}&quot;) { true }
-              end
-            end
-          end
-          
-          puts 'Done!' if verbose
-        end
+        return if option == 'n'
       end
       
-      # Uninstalls the TinyMCE installation and optional configuration file
-      # 
-      # Configuration options:
-      # * +target+ - The path that TinyMCE was installed to. Default is &quot;public/javascripts/tiny_mce&quot;
-      def uninstall(options = {})
-        # Remove the TinyMCE configuration file
-        File.delete(OPTIONS_FILE_PATH)
+      # Get the url of the TinyMCE version
+      require 'hpricot'
+      require 'open-uri'
+      
+      puts &quot;Finding url of TinyMCE-#{version || 'latest'} download...&quot; if verbose
+      doc = Hpricot(open('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430'))
+      if version
+        url_version = version.gsub('.', '_')
+        file_element = (doc/'tr[@id*=&quot;rel0_&quot;] a').detect {|file| file.innerHTML =~ /#{url_version}.zip$/}
+        raise ArgumentError, &quot;Could not find TinyMCE version #{version}&quot; if !file_element
+      else
+        file_element = (doc/'tr[@id^=&quot;pkg0_1rel0_&quot;] a').detect {|file| file.innerHTML.to_s =~ /tinymce_([\d_]+).zip$/}
+        raise ArgumentError, 'Could not find latest TinyMCE version' if !file_element
         
-        # Remove the TinyMCE installation
-        FileUtils.rm_rf(options[:target] || &quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
+        version = $1.gsub('_', '.')
       end
       
-      # Updates the list of possible configuration options that can be used
-      # when initializing the TinyMCE script.  These are always installed to
-      # the application folder, config/tiny_mce_options.yml.  If this file
-      # does not exist, then the TinyMCE helper will not be able to verify
-      # that all of the initialization options are valid.
-      def update_options
-        require 'hpricot'
-        require 'open-uri'
-        require 'yaml'
+      filename = file_element.innerHTML
+      file_url = file_element['href']
+      
+      # Download the file
+      puts &quot;Downloading TinyMCE-#{version} source from #{file_url}...&quot; if verbose
+      open(file_url) do |file|
+        file_path = file.path
+        
+        # Extract and install
+        puts &quot;Extracting source from #{file_path}...&quot; if verbose
         
-        puts 'Downloading configuration options from TinyMCE Wiki...' if verbose
-        doc = Hpricot(open('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration'))
-        options = (doc/'a[@title*=&quot;Configuration/&quot;]/').collect {|option| option.to_s}.sort
-        options.reject! {|option| option =~ DYNAMIC_OPTIONS}
+        require 'zip/zip'
+        require 'zip/zipfilesystem'
         
-        File.open(OPTIONS_FILE_PATH, 'w') do |out|
-          YAML.dump(options, out)
+        Zip::ZipFile.open(file_path) do |zipfile|
+          zipfile.entries.each do |entry|
+            if match = /tinymce\/jscripts\/tiny_mce\/(.*)/.match(entry.name)
+              FileUtils.mkdir_p(&quot;#{target_path}/#{File.dirname(match[1])}&quot;)
+              entry.extract(&quot;#{target_path}/#{match[1]}&quot;) { true }
+            end
+          end
         end
+        
         puts 'Done!' if verbose
       end
     end
     
-    # Is TinyMCE being used?
-    def using_tiny_mce?
-      @uses_tiny_mce
-    end
-    
-    # Create the TinyMCE initialization scripts.  The default configuration
-    # is for a simple theme that replaces all textareas on the page.  For
-    # example, the default initialization script will generate the following:
-    # 
-    #  tinyMCE.init({
-    #    'mode' : 'textareas',
-    #    'theme' : 'simple'
-    #  });
-    # 
-    # == Customizing initialization options
-    # 
-    # To customize the options to be included in the initialization script,
-    # you can pass in a hash to +tiny_mce_init_script+.  For example,
-    # 
-    #   tiny_mce_init_script(
-    #     :theme =&gt; 'advanced',
-    #     :editor_selector =&gt; 'rich_text',
-    #     :content_css =&gt; '/stylesheets/tiny_mce_content.css',
-    #     :editor_css =&gt; '/stylesheets/tiny_mce_editor.css',
-    #     :auto_reset_designmode =&gt; true
-    #   )
-    # 
-    # will generate:
+    # Uninstalls the TinyMCE installation and optional configuration file
     # 
-    #  tinyMCE.init({
-    #    'mode' : 'textareas',
-    #    'theme' : 'advanced',
-    #    'editor_selected' : 'rich_text',
-    #    'content_css' : '/stylesheets/tiny_mce_content.css'
-    #  });
-    # 
-    # == Validating options
-    # 
-    # If additional options are passed in to initialize TinyMCE, they will be
-    # validated against the list of valid options in PluginAWeek::TinyMCEHelper#valid_options.
-    # These options are configured in the file config/tiny_mce_options.yml.
-    # You can generate this file by invoke the rake task tiny_mce:update_options.
-    def tiny_mce_init_script(options = @tiny_mce_options)
-      options ||= {}
-      options.stringify_keys!.reverse_merge!(
-        'mode' =&gt; 'textareas',
-        'theme' =&gt; 'simple'
-      )
+    # Configuration options:
+    # * +target+ - The path that TinyMCE was installed to. Default is &quot;public/javascripts/tiny_mce&quot;
+    def uninstall(options = {})
+      # Remove the TinyMCE configuration file
+      File.delete(OPTIONS_FILE_PATH)
       
-      # Check validity
-      plugins = options['plugins']
-      options_to_validate = options.reject {|option, value| plugins &amp;&amp; plugins.include?(option.split('_')[0]) || option =~ DYNAMIC_OPTIONS}
-      options_to_validate.assert_valid_keys(@@valid_options) if @@valid_options &amp;&amp; @@valid_options.any?
+      # Remove the TinyMCE installation
+      FileUtils.rm_rf(options[:target] || &quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
+    end
+    
+    # Updates the list of possible configuration options that can be used
+    # when initializing the TinyMCE script.  These are always installed to
+    # the application folder, config/tiny_mce_options.yml.  If this file
+    # does not exist, then the TinyMCE helper will not be able to verify
+    # that all of the initialization options are valid.
+    def update_options
+      require 'hpricot'
+      require 'open-uri'
+      require 'yaml'
       
-      init_script = 'tinyMCE.init({'
+      puts 'Downloading configuration options from TinyMCE Wiki...' if verbose
+      doc = Hpricot(open('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration'))
+      options = (doc/'a[@title*=&quot;Configuration/&quot;]/').collect {|option| option.to_s}.sort
+      options.reject! {|option| option =~ DYNAMIC_OPTIONS}
       
-      options.sort.each do |key, value|
-        init_script += &quot;\n#{key} : &quot;
-        
-        case value
-          when String, Symbol, Fixnum
-            init_script &lt;&lt; &quot;'#{value}'&quot;
-          when Array
-            init_script &lt;&lt; &quot;'#{value.join(',')}'&quot;
-          when TrueClass
-            init_script &lt;&lt; 'true'
-          when FalseClass
-            init_script &lt;&lt; 'false'
-          else
-            raise ArgumentError, &quot;Cannot parse value of type #{value.class} passed for TinyMCE option #{key}&quot;
-        end
-        
-        init_script &lt;&lt; ','
+      File.open(OPTIONS_FILE_PATH, 'w') do |out|
+        YAML.dump(options, out)
       end
-      
-      init_script.chop &lt;&lt; &quot;\n});&quot;
+      puts 'Done!' if verbose
     end
+  end
+  
+  # Is TinyMCE being used?
+  def using_tiny_mce?
+    @uses_tiny_mce
+  end
+  
+  # Create the TinyMCE initialization scripts.  The default configuration
+  # is for a simple theme that replaces all textareas on the page.  For
+  # example, the default initialization script will generate the following:
+  # 
+  #  tinyMCE.init({
+  #    'mode' : 'textareas',
+  #    'theme' : 'simple'
+  #  });
+  # 
+  # == Customizing initialization options
+  # 
+  # To customize the options to be included in the initialization script,
+  # you can pass in a hash to +tiny_mce_init_script+.  For example,
+  # 
+  #   tiny_mce_init_script(
+  #     :theme =&gt; 'advanced',
+  #     :editor_selector =&gt; 'rich_text',
+  #     :content_css =&gt; '/stylesheets/tiny_mce_content.css',
+  #     :editor_css =&gt; '/stylesheets/tiny_mce_editor.css',
+  #     :auto_reset_designmode =&gt; true
+  #   )
+  # 
+  # will generate:
+  # 
+  #  tinyMCE.init({
+  #    'mode' : 'textareas',
+  #    'theme' : 'advanced',
+  #    'editor_selected' : 'rich_text',
+  #    'content_css' : '/stylesheets/tiny_mce_content.css'
+  #  });
+  # 
+  # == Validating options
+  # 
+  # If additional options are passed in to initialize TinyMCE, they will be
+  # validated against the list of valid options in TinyMCEHelper#valid_options.
+  # These options are configured in the file config/tiny_mce_options.yml.
+  # You can generate this file by invoke the rake task tiny_mce:update_options.
+  def tiny_mce_init_script(options = @tiny_mce_options)
+    options ||= {}
+    options.stringify_keys!.reverse_merge!(
+      'mode' =&gt; 'textareas',
+      'theme' =&gt; 'simple'
+    )
     
-    # Generate the TinyMCE. Any arguments will be passed to tiny_mce_init_script.
-    def tiny_mce(*args)
-      javascript_tag tiny_mce_init_script(*args)
-    end
+    # Check validity
+    plugins = options['plugins']
+    options_to_validate = options.reject {|option, value| plugins &amp;&amp; plugins.include?(option.split('_')[0]) || option =~ DYNAMIC_OPTIONS}
+    options_to_validate.assert_valid_keys(@@valid_options) if @@valid_options &amp;&amp; @@valid_options.any?
     
-    # The name of the TinyMCE javascript file to use.  In development, this
-    # will use the source (uncompressed) file in order to help with debugging
-    # issues that occur within TinyMCE.  In production, the compressed version
-    # of TinyMCE will be used in order to increased download speed.
-    def tiny_mce_file_name
-      Rails.env == 'development' ? 'tiny_mce/tiny_mce_src' : 'tiny_mce/tiny_mce'
-    end
+    init_script = 'tinyMCE.init({'
     
-    # Generates the javascript include for TinyMCE.  For example,
-    # 
-    #   javascript_include_tiny_mce
-    # 
-    # will generate:
-    # 
-    #   &lt;script type=&quot;text/javascript&quot; src=&quot;/javascripts/tiny_mce/tiny_mce.js&quot;&gt;&lt;/script&gt;
-    def javascript_include_tiny_mce
-      javascript_include_tag tiny_mce_file_name
+    options.sort.each do |key, value|
+      init_script += &quot;\n#{key} : &quot;
+      
+      case value
+        when String, Symbol, Fixnum
+          init_script &lt;&lt; &quot;'#{value}'&quot;
+        when Array
+          init_script &lt;&lt; &quot;'#{value.join(',')}'&quot;
+        when TrueClass
+          init_script &lt;&lt; 'true'
+        when FalseClass
+          init_script &lt;&lt; 'false'
+        else
+          raise ArgumentError, &quot;Cannot parse value of type #{value.class} passed for TinyMCE option #{key}&quot;
+      end
+      
+      init_script &lt;&lt; ','
     end
     
-    # Conditionally includes the TinyMCE javascript file if the variable
-    # @uses_tiny_mce has been set to true.
-    def javascript_include_tiny_mce_if_used
-      javascript_include_tiny_mce if using_tiny_mce?
-    end
+    init_script.chop &lt;&lt; &quot;\n});&quot;
+  end
+  
+  # Generate the TinyMCE. Any arguments will be passed to tiny_mce_init_script.
+  def tiny_mce(*args)
+    javascript_tag tiny_mce_init_script(*args)
+  end
+  
+  # The name of the TinyMCE javascript file to use.  In development, this
+  # will use the source (uncompressed) file in order to help with debugging
+  # issues that occur within TinyMCE.  In production, the compressed version
+  # of TinyMCE will be used in order to increased download speed.
+  def tiny_mce_file_name
+    Rails.env == 'development' ? 'tiny_mce/tiny_mce_src' : 'tiny_mce/tiny_mce'
+  end
+  
+  # Generates the javascript include for TinyMCE.  For example,
+  # 
+  #   javascript_include_tiny_mce
+  # 
+  # will generate:
+  # 
+  #   &lt;script type=&quot;text/javascript&quot; src=&quot;/javascripts/tiny_mce/tiny_mce.js&quot;&gt;&lt;/script&gt;
+  def javascript_include_tiny_mce
+    javascript_include_tag tiny_mce_file_name
+  end
+  
+  # Conditionally includes the TinyMCE javascript file if the variable
+  # @uses_tiny_mce has been set to true.
+  def javascript_include_tiny_mce_if_used
+    javascript_include_tiny_mce if using_tiny_mce?
   end
 end
 
 ActionController::Base.class_eval do
-  helper PluginAWeek::TinyMCEHelper
+  helper TinyMCEHelper
 end</diff>
      <filename>lib/tiny_mce_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,21 @@
 namespace :tiny_mce do
   desc 'Downloads TinyMCE and installs it in the application. Target specific version with VERSION=x, specific target path with TARGET=y'
   task :install =&gt; :environment do
-    PluginAWeek::TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'])
+    TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'])
   end
   
   desc 'Downloads TinyMCE and installs it in the application. Target specific version with VERSION=x, specific target path with TARGET=y'
   task :update =&gt; :environment do
-    PluginAWeek::TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'], :force =&gt; true)
+    TinyMCEHelper.install(:version =&gt; ENV['VERSION'], :target =&gt; ENV['TARGET'], :force =&gt; true)
   end
   
   desc 'Uninstalls TinyMCE and removes any associated configuration files.'
   task :uninstall =&gt; :environment do
-    PluginAWeek::TinyMCEHelper.uninstall(:target =&gt; ENV['TARGET'])
+    TinyMCEHelper.uninstall(:target =&gt; ENV['TARGET'])
   end
   
   desc 'Updates the list of TinyMCE options and stores them in config/tiny_mce_options.yml.'
   task :update_options =&gt; :environment do
-    PluginAWeek::TinyMCEHelper.update_options
+    TinyMCEHelper.update_options
   end
 end</diff>
      <filename>tasks/tiny_mce_helper_tasks.rake</filename>
    </modified>
    <modified>
      <diff>@@ -1,16 +1,16 @@
 require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
 
 class TinyMceHelperTest &lt; ActionView::TestCase
-  tests PluginAWeek::TinyMCEHelper
+  tests TinyMCEHelper
   
   def test_valid_options_should_not_be_empty
-    assert PluginAWeek::TinyMCEHelper.valid_options.any?
+    assert TinyMCEHelper.valid_options.any?
   end
 end
 
 uses_mocha 'stubbing Rails.env' do
   class TinyMceHelperFilenameTest &lt; ActionView::TestCase
-    tests PluginAWeek::TinyMCEHelper
+    tests TinyMCEHelper
     
     def test_should_use_source_file_name_if_in_development
       Rails.stubs(:env).returns(ActiveSupport::StringInquirer.new('development'))
@@ -40,7 +40,7 @@ uses_mocha 'stubbing Rails.env' do
 end
 
 class TinyMceHelperDisabledTest &lt; ActionView::TestCase
-  tests PluginAWeek::TinyMCEHelper
+  tests TinyMCEHelper
   
   def setup
     @uses_tiny_mce = false
@@ -56,7 +56,7 @@ class TinyMceHelperDisabledTest &lt; ActionView::TestCase
 end
 
 class TinyMceHelperEnabledTest &lt; ActionView::TestCase
-  tests PluginAWeek::TinyMCEHelper
+  tests TinyMCEHelper
   
   def setup
     @uses_tiny_mce = true
@@ -72,11 +72,11 @@ class TinyMceHelperEnabledTest &lt; ActionView::TestCase
 end
 
 class TinyMceHelperScriptTest &lt; ActionView::TestCase
-  tests PluginAWeek::TinyMCEHelper
+  tests TinyMCEHelper
   
   def setup
     # Track valid options
-    @original_valid_options = PluginAWeek::TinyMCEHelper.valid_options.dup
+    @original_valid_options = TinyMCEHelper.valid_options.dup
   end
   
   def test_should_use_textareas_mode_and_simple_theme_by_default
@@ -94,12 +94,12 @@ class TinyMceHelperScriptTest &lt; ActionView::TestCase
   end
   
   def test_should_not_raise_exception_if_invalid_option_provided_but_valid_options_is_nil
-    PluginAWeek::TinyMCEHelper.valid_options = nil
+    TinyMCEHelper.valid_options = nil
     assert_nothing_raised {tiny_mce_init_script(:invalid =&gt; true)}
   end
   
   def test_should_not_raise_exception_if_invalid_option_provided_but_valid_options_is_empty
-    PluginAWeek::TinyMCEHelper.valid_options = []
+    TinyMCEHelper.valid_options = []
     assert_nothing_raised {tiny_mce_init_script(:invalid =&gt; true)}
   end
   
@@ -166,7 +166,7 @@ class TinyMceHelperScriptTest &lt; ActionView::TestCase
   end
   
   def teardown
-    PluginAWeek::TinyMCEHelper.valid_options = @original_valid_options
+    TinyMCEHelper.valid_options = @original_valid_options
   end
 end
 </diff>
      <filename>test/helpers/tiny_mce_helper_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,15 +3,15 @@ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
 uses_mocha 'mocking install/update' do
   class TinyMceInstallerTest &lt; Test::Unit::TestCase
     def setup
-      PluginAWeek::TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430').returns(open('test/files/sourceforge.html')) unless live?
+      TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430').returns(open('test/files/sourceforge.html')) unless live?
       
       # Set up public path
       FileUtils.mkdir_p(&quot;#{Rails.root}/public/javascripts&quot;)
     end
     
     def test_should_save_latest_version_to_default_target
-      PluginAWeek::TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;)) unless live?
-      PluginAWeek::TinyMCEHelper.install(:force =&gt; true)
+      TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;)) unless live?
+      TinyMCEHelper.install(:force =&gt; true)
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
       
@@ -26,8 +26,8 @@ uses_mocha 'mocking install/update' do
     end
     
     def test_should_allow_custom_version
-      PluginAWeek::TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_2.zip?modtime=1207580953&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_6_2.zip&quot;)) unless live?
-      PluginAWeek::TinyMCEHelper.install(:version =&gt; '3.0.6.2', :force =&gt; true)
+      TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_2.zip?modtime=1207580953&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_6_2.zip&quot;)) unless live?
+      TinyMCEHelper.install(:version =&gt; '3.0.6.2', :force =&gt; true)
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
       
@@ -37,8 +37,8 @@ uses_mocha 'mocking install/update' do
     end
     
     def test_should_allow_custom_target
-      PluginAWeek::TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;)) unless live?
-      PluginAWeek::TinyMCEHelper.install(:target =&gt; 'public/javascripts/tinymce', :force =&gt; true)
+      TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;)) unless live?
+      TinyMCEHelper.install(:target =&gt; 'public/javascripts/tinymce', :force =&gt; true)
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tinymce&quot;)
     end
@@ -58,14 +58,14 @@ uses_mocha 'mocking install/update' do
       expects_file_requests
       
       STDIN.expects(:gets).returns(&quot;y\n&quot;)
-      PluginAWeek::TinyMCEHelper.install
+      TinyMCEHelper.install
     end
     
     def test_should_skip_if_user_skips
-      PluginAWeek::TinyMCEHelper.expects(:open).never
+      TinyMCEHelper.expects(:open).never
       
       STDIN.expects(:gets).returns(&quot;n\n&quot;)
-      PluginAWeek::TinyMCEHelper.install
+      TinyMCEHelper.install
       
       assert !File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce/tiny_mce_src.js&quot;)
     end
@@ -74,7 +74,7 @@ uses_mocha 'mocking install/update' do
       expects_file_requests
       
       STDIN.expects(:gets).returns(&quot;y\n&quot;)
-      PluginAWeek::TinyMCEHelper.install
+      TinyMCEHelper.install
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce/tiny_mce_src.js&quot;)
     end
@@ -83,7 +83,7 @@ uses_mocha 'mocking install/update' do
       expects_file_requests
       
       STDIN.expects(:gets).times(2).returns(&quot;k\n&quot;, &quot;y\n&quot;)
-      PluginAWeek::TinyMCEHelper.install
+      TinyMCEHelper.install
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce/tiny_mce_src.js&quot;)
     end
@@ -92,7 +92,7 @@ uses_mocha 'mocking install/update' do
       expects_file_requests
       
       STDIN.expects(:gets).never
-      PluginAWeek::TinyMCEHelper.install(:force =&gt; true)
+      TinyMCEHelper.install(:force =&gt; true)
       
       assert File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce/tiny_mce_src.js&quot;)
     end
@@ -104,40 +104,40 @@ uses_mocha 'mocking install/update' do
     private
       def expects_file_requests
         unless live?
-          PluginAWeek::TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430').returns(open('test/files/sourceforge.html'))
-          PluginAWeek::TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;))
+          TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/showfiles.php?group_id=103281&amp;package_id=111430').returns(open('test/files/sourceforge.html'))
+          TinyMCEHelper.expects(:open).with('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip?modtime=1209567317&amp;big_mirror=0').yields(open(&quot;#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_0_8.zip&quot;))
         end
       end
   end
 
   class TinyMceUpdaterTest &lt; Test::Unit::TestCase
     def setup
-      PluginAWeek::TinyMCEHelper.expects(:open).with('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration').returns(open('test/files/sourceforge.html')) unless live?
+      TinyMCEHelper.expects(:open).with('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration').returns(open('test/files/sourceforge.html')) unless live?
       
       # Track valid options
-      @original_valid_options = PluginAWeek::TinyMCEHelper.valid_options.dup
+      @original_valid_options = TinyMCEHelper.valid_options.dup
     end
     
     def test_should_update_options_if_options_configuration_doesnt_exist
       FileUtils.rm(&quot;#{Rails.root}/config/tiny_mce_options.yml&quot;)
-      PluginAWeek::TinyMCEHelper.update_options
+      TinyMCEHelper.update_options
       
       assert File.exists?(&quot;#{Rails.root}/config/tiny_mce_options.yml&quot;)
-      options = YAML.load(File.read(PluginAWeek::TinyMCEHelper::OPTIONS_FILE_PATH))
+      options = YAML.load(File.read(TinyMCEHelper::OPTIONS_FILE_PATH))
       assert_instance_of Array, options
     end
     
     def test_should_update_options_if_options_configuration_exists
       File.truncate(&quot;#{Rails.root}/config/tiny_mce_options.yml&quot;, 0)
-      PluginAWeek::TinyMCEHelper.update_options
+      TinyMCEHelper.update_options
       
       assert File.exists?(&quot;#{Rails.root}/config/tiny_mce_options.yml&quot;)
-      options = YAML.load(File.open(PluginAWeek::TinyMCEHelper::OPTIONS_FILE_PATH))
+      options = YAML.load(File.open(TinyMCEHelper::OPTIONS_FILE_PATH))
       assert_instance_of Array, options
     end
     
     def teardown
-      PluginAWeek::TinyMCEHelper.valid_options = @original_valid_options
+      TinyMCEHelper.valid_options = @original_valid_options
       FileUtils.cp(&quot;#{Rails.root}/config_bak/tiny_mce_options.yml&quot;, &quot;#{Rails.root}/config&quot;)
     end
   end
@@ -150,13 +150,13 @@ class TinyMceUninstallerTest &lt; Test::Unit::TestCase
   end
   
   def test_uninstall_should_remove_options_configuration
-    PluginAWeek::TinyMCEHelper.uninstall
+    TinyMCEHelper.uninstall
     assert !File.exists?(&quot;#{Rails.root}/config/tiny_mce_options.yml&quot;)
   end
   
   def test_uninstall_should_remove_tinymce_source
     FileUtils.mkdir(&quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
-    PluginAWeek::TinyMCEHelper.uninstall
+    TinyMCEHelper.uninstall
     
     assert !File.exists?(&quot;#{Rails.root}/public/javascripts/tiny_mce&quot;)
   end</diff>
      <filename>test/unit/tiny_mce_helper_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
 # Uninstall TinyMCE
-PluginAWeek::TinyMCEHelper.uninstall
+TinyMCEHelper.uninstall</diff>
      <filename>uninstall.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bf85556c2d0f3468820638a421a47616fccab1b9</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </author>
  <url>http://github.com/pluginaweek/tiny_mce_helper/commit/ebb35b8a2f30a967a72e94cc08e0f01b8f3d786a</url>
  <id>ebb35b8a2f30a967a72e94cc08e0f01b8f3d786a</id>
  <committed-date>2008-12-14T19:42:27-08:00</committed-date>
  <authored-date>2008-12-14T19:42:27-08:00</authored-date>
  <message>Remove the PluginAWeek namespace</message>
  <tree>5c850ed5384a93f75b9eb6ea3cadc9e75262dea2</tree>
  <committer>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </committer>
</commit>
