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

17 files changed

+17
-1
lines changed

lib/net-ldap.rb

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

lib/net/ber.rb

+1
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

+1-1
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

+1
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

+1
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

+1
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

+1
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

+1
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

+1
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

+1
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

lib/net/ldap.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'ostruct'
23

34
module Net # :nodoc:

lib/net/ldap/dataset.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# An LDAP Dataset. Used primarily as an intermediate format for converting
34
# to and from LDIF strings and Net::LDAP::Entry objects.

lib/net/ldap/entry.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
##
23
# Objects of this class represent individual entries in an LDAP directory.
34
# User code generally does not instantiate this class. Net::LDAP#search

lib/net/ldap/filter.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- ruby encoding: utf-8 -*-
2+
# -*- ruby encoding: utf-8 -*-
23

34
##
45
# Class Net::LDAP::Filter is used to constrain LDAP searches. An object of

lib/net/ldap/password.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'digest/sha1'
23
require 'digest/md5'
34

lib/net/ldap/pdu.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
require 'ostruct'
23

34
##

lib/net/snmp.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- ruby encoding: utf-8 -*-
12
# :stopdoc:
23
module Net
34
class SNMP

0 commit comments

Comments
 (0)