Sha256: ebfea63150fd49b5ac7bd442d7361a8b55525450e04d8031cd3460291b8b4ae7

Contents?: true

Size: 1.06 KB

Versions: 23

Compression:

Stored size: 1.06 KB

Contents

module SugarHigh
  module FileMutate
    module RemoveContent
      def remove_content options=nil, &block
        opt_str = case options
        when String
          options
        when Hash
          content = options[:content] || options[:where]
          raise ArgumentError, "Bad :content value in Hash" if !content || content.strip.empty?
          content.strip
        else
          raise ArgumentError, "non-block argument must be either String or Hash with a :content option" if !block
        end    
        content = block ? yield : opt_str
    
        File.remove_content_from self.path, :content => content, :with => '', &block
      end
      alias_method :remove, :remove_content

      module ClassMethods
        def remove_from file_name, content=nil, &block
          content ||= yield
          replace_content_from file_name, :content => content, :with => '', &block
        end
   
        def remove_content_from file_name, options = {}, &block
          replace_content_from file_name, options.merge(:with => ''), &block
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
sugar-high-0.5.5 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.5.4 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.5.3 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.5.1 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.5.0 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.9.5 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.9.3 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.9.2 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.9.1 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.9 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.8 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.7 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.6.4 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.6.3 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.6.2 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.6.1 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.6 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.5.2 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.5 lib/sugar-high/file_mutate/remove_content.rb
sugar-high-0.4.4.2 lib/sugar-high/file_mutate/remove_content.rb