Skip to content

Commit fd354ad

Browse files
committed
remove UTF8 magic comments
1 parent 49eef87 commit fd354ad

12 files changed

+0
-13
lines changed

Rakefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: utf-8
21
# Add your own tasks in files placed in lib/tasks ending in .rake,
32
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
43

app/helpers/external_link_helper.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
module ExternalLinkHelper
32
def link_to_twitter(thing, params={clung: false}, &block)
43
nick = thing.respond_to?(:twitter) ? thing.twitter : thing

db/migrate/20110720194144_add_company_to_location.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
class AddCompanyToLocation < ActiveRecord::Migration
32
def self.up
43
add_column :locations, :company, :boolean

db/schema.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
# This file is auto-generated from the current state of the database. Instead
32
# of editing this file, please use the migrations feature of Active Record to
43
# incrementally modify your database, and then regenerate this schema definition.

script/generate-humans

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env ruby
2-
# encoding: UTF-8
32

43
FORMAT = <<-OUTPUT
54
________

spec/helpers/application_helper_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: utf-8
21
require "spec_helper"
32

43
describe ApplicationHelper do

spec/helpers/events_helper_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
require 'spec_helper'
32

43
describe EventsHelper do

spec/helpers/external_link_helper_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: utf-8
21
require "spec_helper"
32

43
describe ExternalLinkHelper do

spec/helpers/topics_helper_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: utf-8
21
require 'spec_helper'
32

43
describe TopicsHelper do

spec/models/user_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
require 'spec_helper'
32

43
describe User do

spec/support/factories/authorizations.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: UTF-8
21
TWITTER_AUTH_HASH = {
32
"provider"=>"twitter",
43
"uid"=>"14339524",

spec/support/factories/users.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: UTF-8
2-
31
FactoryGirl.define do
42
factory :user do
53
name { Faker::Name.name }

0 commit comments

Comments
 (0)