Skip to content

Commit

Permalink
Revert "set encoding in utf-8"
Browse files Browse the repository at this point in the history
This reverts commit 356150c.

Quoth the wycats:
Rule of thumb: you never need to put an encoding in a file UNLESS that
file contains UTF-8 characters. Figuring out the root cause is important
in encoding issues or you're just kicking the can down the road.
  • Loading branch information
dudleyf committed Mar 9, 2012
1 parent 47ce501 commit feb2324
Show file tree
Hide file tree
Showing 21 changed files with 0 additions and 21 deletions.
1 change: 0 additions & 1 deletion lib/generators/rake/pipeline/install/install_generator.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
class InstallGenerator < Rails::Generators::Base
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rake-pipeline/file_wrapper"
require "rake-pipeline/filter"
require "rake-pipeline/filters"
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/cli.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "thor"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/dsl.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
module DSL
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/dsl/pipeline_dsl.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
module DSL
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/dsl/project_dsl.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
module DSL
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/error.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
# The general Rake::Pipeline error class
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/file_wrapper.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
# This class wraps a file for consumption inside of filters. It is
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/filter.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rake"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/filters.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rake-pipeline/filters/concat_filter"
require "rake-pipeline/filters/ordering_concat_filter"
require "rake-pipeline/filters/pipeline_finalizing_filter"
1 change: 0 additions & 1 deletion lib/rake-pipeline/filters/concat_filter.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
# A built-in filter that simply accepts a series
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/filters/ordering_concat_filter.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
class Rake::Pipeline
# A filter that concats files in a specified order.
#
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/filters/pipeline_finalizing_filter.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
# @private
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/matcher.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "strscan"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/middleware.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rack"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/precompile.rake
@@ -1,4 +1,3 @@
# encoding: utf-8
namespace :assets do
desc "Precompile assets using Rake::Pipeline"
task :precompile do
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/project.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "digest"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/rails_plugin.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require 'rake-pipeline/middleware'

Rails.configuration.after_initialize do
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/railtie.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rake-pipeline/middleware"

module Rake
Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/server.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
require "rake-pipeline/middleware"
require "rack/server"

Expand Down
1 change: 0 additions & 1 deletion lib/rake-pipeline/version.rb
@@ -1,4 +1,3 @@
# encoding: utf-8
module Rake
class Pipeline
# @version 0.6.0
Expand Down

0 comments on commit feb2324

Please sign in to comment.