Skip to content

Commit fedd290

Browse files
author
Austin Ziegler
committed
Adding utf-8 encoding headers to all lib files.
1 parent 2d098d4 commit fedd290

File tree

17 files changed

+17
-1
lines changed

17 files changed

+17
-1
lines changed

lib/net-ldap.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'net/ldap'

lib/net/ber.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
module Net # :nodoc:
23
##
34
# == Basic Encoding Rules (BER) Support Module

lib/net/ber/ber_parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'stringio'
23

3-
##
44
# Implements Basic Encoding Rules parsing to be mixed into types as needed.
55
module Net::BER::BERParser
66
primitive = {

lib/net/ber/core_ext.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'net/ber/ber_parser'
23
# :stopdoc:
34
class IO

lib/net/ber/core_ext/array.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# BER extensions to the Array class.
34
module Net::BER::Extensions::Array

lib/net/ber/core_ext/bignum.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# BER extensions to the Bignum class.
34
module Net::BER::Extensions::Bignum

lib/net/ber/core_ext/false_class.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# BER extensions to +false+.
34
module Net::BER::Extensions::FalseClass

lib/net/ber/core_ext/fixnum.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# Ber extensions to the Fixnum class.
34
module Net::BER::Extensions::Fixnum

lib/net/ber/core_ext/string.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'stringio'
23

34
##

lib/net/ber/core_ext/true_class.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# BER extensions to +true+.
34
module Net::BER::Extensions::TrueClass

0 commit comments

Comments
 (0)