Skip to content

Commit 3394816

Browse files
committed
Rubocop!
1 parent 09dc4dc commit 3394816

9 files changed

+104
-72
lines changed

.rubocop.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
AllCops:
3+
Include:
4+
- '**/Rakefile'
5+
Exclude:
6+
- 'ext/**/*'
7+
- 'ports/**/*'
8+
- 'test/**/*'
9+
- 'tmp/**/*'
10+
11+
# Redefined
12+
13+
Metrics/LineLength:
14+
Max: 120
15+
16+
Metrics/ClassLength:
17+
Max: 200
18+
19+
# Disabled
20+
21+
Style/Documentation:
22+
Enabled: false
23+
24+
Style/EmptyLinesAroundClassBody:
25+
Enabled: false
26+
27+
Style/EmptyLinesAroundModuleBody:
28+
Enabled: false
29+
30+
Style/EmptyLinesAroundBlockBody:
31+
Enabled: false

Rakefile

+17-15
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ require 'rubygems/package_task'
88
require_relative './ext/tiny_tds/extconsts'
99

1010
def test_libs
11-
['lib','test']
11+
%w(lib test)
1212
end
1313

1414
def test_files
1515
if ENV['TEST_FILES']
16-
ENV['TEST_FILES'].split(',').map{ |f| f.strip }.sort
16+
ENV['TEST_FILES'].split(',').map(&:strip).sort
1717
else
18-
Dir.glob("test/**/*_test.rb").sort
18+
Dir.glob('test/**/*_test.rb').sort
1919
end
2020
end
2121

@@ -32,7 +32,7 @@ def gem_build_path(spec)
3232
File.join 'pkg', spec.full_name
3333
end
3434

35-
gemspec = Gem::Specification::load(File.expand_path('../tiny_tds.gemspec', __FILE__))
35+
gemspec = Gem::Specification.load(File.expand_path('../tiny_tds.gemspec', __FILE__))
3636

3737
Rake::TestTask.new do |t|
3838
t.libs = test_libs
@@ -47,18 +47,18 @@ end
4747

4848
task :compile
4949

50-
task :build => [:clean, :compile]
50+
task build: [:clean, :compile]
5151
task(:build_quietly) { capture_stds { Rake::Task[:build].invoke } }
5252

53-
task :default => [:build, :test]
53+
task default: [:build, :test]
5454

55-
Dir["tasks/*.rake"].sort.each { |f| load f }
55+
Dir['tasks/*.rake'].sort.each { |f| load f }
5656

5757
Rake::ExtensionTask.new('tiny_tds', gemspec) do |ext|
5858
ext.lib_dir = 'lib/tiny_tds'
5959
ext.cross_compile = true
6060
ext.cross_platform = ['x86-mingw32', 'x64-mingw32']
61-
ext.cross_config_options += %w[ --disable-lookup --enable-cross-build ]
61+
ext.cross_config_options += %w(--disable-lookup --enable-cross-build)
6262
# Add dependent DLLs to the cross gems
6363
ext.cross_compiling do |spec|
6464
platform_host_map = {
@@ -70,16 +70,16 @@ Rake::ExtensionTask.new('tiny_tds', gemspec) do |ext|
7070
dlls = [
7171
"libeay32-1.0.2g-#{host}.dll",
7272
"ssleay32-1.0.2g-#{host}.dll",
73-
"libiconv-2.dll",
74-
"libsybdb-5.dll",
73+
'libiconv-2.dll',
74+
'libsybdb-5.dll'
7575
]
7676
# We don't need the sources in a fat binary gem
77-
spec.files = spec.files.reject { |f| f=~/^ports\/archives/ }
77+
spec.files = spec.files.reject { |f| f =~ %r{^ports\/archives/} }
7878
spec.files += dlls.map { |dll| "ports/#{host}/bin/#{File.basename(dll)}" }
7979
spec.files += Dir.glob('exe/*')
8080
dlls.each do |dll|
8181
file "ports/#{host}/bin/#{dll}" do |t|
82-
sh "x86_64-w64-mingw32-strip", t.name
82+
sh 'x86_64-w64-mingw32-strip', t.name
8383
end
8484
end
8585
end
@@ -90,7 +90,7 @@ task gem_build_path(gemspec) do
9090
add_file_to_gem gemspec, "ports/archives/freetds-#{FREETDS_VERSION}.tar.bz2"
9191
end
9292

93-
desc "Build the windows binary gems per rake-compiler-dock"
93+
desc 'Build the windows binary gems per rake-compiler-dock'
9494
task 'gem:windows' do
9595
require 'rake_compiler_dock'
9696
RakeCompilerDock.sh <<-EOT
@@ -99,8 +99,10 @@ task 'gem:windows' do
9999
end
100100

101101
def capture_stds
102-
pstdout, $stdout = $stdout, StringIO.new
103-
pstderr, $stderr = $stderr, StringIO.new
102+
pstdout = $stdout
103+
$stdout = StringIO.new
104+
pstderr = $stderr
105+
$stderr = StringIO.new
104106
yield
105107
$stdout.string
106108
$stderr.string

lib/tiny_tds.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
# Support multiple ruby versions, fat binaries under Windows.
1212
if RUBY_PLATFORM =~ /mingw|mswin/ && RUBY_VERSION =~ /(\d+.\d+)/
13-
ver = $1
13+
ver = Regexp.last_match(1)
1414
# Set the PATH environment variable, so that the DLLs can be found.
1515
old_path = ENV['PATH']
1616
begin
1717
# Do the same host consolidation as in extconf.rb
18-
ports_dir = RbConfig::CONFIG["host"].gsub('i686-pc-mingw32', 'i686-w64-mingw32')
18+
ports_dir = RbConfig::CONFIG['host'].gsub('i686-pc-mingw32', 'i686-w64-mingw32')
1919
ENV['PATH'] = "#{File.expand_path("../../ports/#{ports_dir}/bin", __FILE__)};#{old_path}"
2020
require "tiny_tds/#{ver}/tiny_tds"
2121
rescue LoadError
@@ -27,9 +27,9 @@
2727
# Load dependent shared libraries into the process, so that they are already present,
2828
# when tiny_tds.so is loaded. This ensures, that shared libraries are loaded even when
2929
# the path is different between build and run time (e.g. Heroku).
30-
ports_libs = File.expand_path("../../ports/#{RbConfig::CONFIG["host"]}/lib/*.so", __FILE__)
30+
ports_libs = File.expand_path("../../ports/#{RbConfig::CONFIG['host']}/lib/*.so", __FILE__)
3131
Dir[ports_libs].each do |lib|
32-
require "fiddle"
32+
require 'fiddle'
3333
Fiddle.dlopen(lib)
3434
end
3535

lib/tiny_tds/bin.rb

+9-10
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,18 @@ def initialize(name)
2929
def run(*args)
3030
return nil unless path
3131
Kernel.system Shellwords.join(args.unshift(path))
32-
$?.to_i
32+
$CHILD_STATUS.to_i
3333
end
3434

3535
def path
3636
return @path if defined?(@path)
37-
@path = @exefile && File.exists?(@exefile) ? @exefile : which
37+
@path = @exefile && File.exist?(@exefile) ? @exefile : which
3838
end
3939

4040
def info
4141
"[TinyTds][v#{TinyTds::VERSION}][#{name}]: #{path}"
4242
end
4343

44-
4544
private
4645

4746
def find_bin
@@ -51,7 +50,7 @@ def find_bin
5150
def find_exe
5251
EXTS.each do |ext|
5352
f = File.join ROOT, 'exe', "#{name}#{ext}"
54-
return f if File.exists?(f)
53+
return f if File.exist?(f)
5554
end
5655
nil
5756
end
@@ -61,12 +60,12 @@ def which
6160
EXTS.each do |ext|
6261
exe = File.expand_path File.join(path, "#{name}#{ext}"), ROOT
6362
next if exe == @binstub
64-
next if !File.executable?(exe)
65-
next if !binary?(exe)
63+
next unless File.executable?(exe)
64+
next unless binary?(exe)
6665
return exe
6766
end
6867
end
69-
return nil
68+
nil
7069
end
7170

7271
# Implementation directly copied from ptools.
@@ -77,9 +76,9 @@ def binary?(file)
7776
bytes = File.stat(file).blksize
7877
return false unless bytes
7978
bytes = 4096 if bytes > 4096
80-
s = (File.read(file, bytes) || "")
81-
s = s.encode('US-ASCII', :undef => :replace).split(//)
82-
((s.size - s.grep(" ".."~").size) / s.size.to_f) > 0.30
79+
s = (File.read(file, bytes) || '')
80+
s = s.encode('US-ASCII', undef: :replace).split(//)
81+
((s.size - s.grep(' '..'~').size) / s.size.to_f) > 0.30
8382
end
8483

8584
end

lib/tiny_tds/client.rb

+37-35
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
module TinyTds
22
class Client
33

4-
@@default_query_options = {
5-
:as => :hash,
6-
:symbolize_keys => false,
7-
:cache_rows => true,
8-
:timezone => :local,
9-
:empty_sets => true
4+
@default_query_options = {
5+
as: :hash,
6+
symbolize_keys: false,
7+
cache_rows: true,
8+
timezone: :local,
9+
empty_sets: true
1010
}
1111

1212
attr_reader :query_options
1313

1414
class << self
1515

16-
def default_query_options
17-
@@default_query_options
18-
end
16+
attr_reader :default_query_options
1917

2018
# Most, if not all, iconv encoding names can be found by ruby. Just in case, you can
2119
# overide this method to return a string name that Encoding.find would work with. Default
@@ -25,19 +23,28 @@ def transpose_iconv_encoding(encoding)
2523
encoding
2624
end
2725

28-
end
26+
def local_offset
27+
::Time.local(2010).utc_offset.to_r / 86_400
28+
end
2929

30+
end
3031

31-
def initialize(opts={})
32-
raise ArgumentError, 'missing :host option if no :dataserver given' if opts[:dataserver].to_s.empty? && opts[:host].to_s.empty?
32+
# rubocop:disable Metrics/AbcSize
33+
# rubocop:disable Metrics/MethodLength
34+
# rubocop:disable Metrics/CyclomaticComplexity
35+
# rubocop:disable Metrics/PerceivedComplexity
36+
def initialize(opts = {})
37+
if opts[:dataserver].to_s.empty? && opts[:host].to_s.empty?
38+
raise ArgumentError, 'missing :host option if no :dataserver given'
39+
end
3340
opts[:username] = parse_username(opts)
34-
@query_options = @@default_query_options.dup
41+
@query_options = self.class.default_query_options.dup
3542
opts[:password] = opts[:password].to_s if opts[:password] && opts[:password].to_s.strip != ''
3643
opts[:appname] ||= 'TinyTds'
3744
opts[:tds_version] = tds_versions_setter(opts)
3845
opts[:login_timeout] ||= 60
3946
opts[:timeout] ||= 5
40-
opts[:encoding] = (opts[:encoding].nil? || opts[:encoding].downcase == 'utf8') ? 'UTF-8' : opts[:encoding].upcase
47+
opts[:encoding] = opts[:encoding].nil? || opts[:encoding].casecmp('utf8').zero? ? 'UTF-8' : opts[:encoding].upcase
4148
opts[:port] ||= 1433
4249
opts[:dataserver] = "#{opts[:host]}:#{opts[:port]}" if opts[:dataserver].to_s.empty?
4350
forced_integer_keys = [:login_timeout, :port, :timeout]
@@ -58,24 +65,19 @@ def active?
5865
!closed? && !dead?
5966
end
6067

61-
6268
private
6369

64-
def self.local_offset
65-
::Time.local(2010).utc_offset.to_r / 86400
66-
end
67-
6870
def parse_username(opts)
6971
host = opts[:host]
7072
username = opts[:username]
7173
return username if username.nil? || !opts[:azure]
72-
return username if username.include?("@") && !username.include?("database.windows.net")
73-
user, domain = username.split("@")
74+
return username if username.include?('@') && !username.include?('database.windows.net')
75+
user, domain = username.split('@')
7476
domain ||= host
7577
"#{user}@#{domain.split('.').first}"
7678
end
7779

78-
def tds_versions_setter(opts={})
80+
def tds_versions_setter(opts = {})
7981
v = opts[:tds_version] || ENV['TDSVER'] || '7.3'
8082
TDS_VERSIONS_SETTERS[v.to_s]
8183
end
@@ -107,19 +109,19 @@ def tds_versions_setter(opts={})
107109
# The integer values of the constants are poorly chosen.
108110
#
109111
TDS_VERSIONS_GETTERS = {
110-
0 => {:name => 'DBTDS_UNKNOWN', :description => 'Unknown'},
111-
1 => {:name => 'DBTDS_2_0', :description => 'Pre 4.0 SQL Server'},
112-
2 => {:name => 'DBTDS_3_4', :description => 'Microsoft SQL Server (3.0)'},
113-
3 => {:name => 'DBTDS_4_0', :description => '4.0 SQL Server'},
114-
4 => {:name => 'DBTDS_4_2', :description => '4.2 SQL Server'},
115-
5 => {:name => 'DBTDS_4_6', :description => '2.0 OpenServer and 4.6 SQL Server.'},
116-
6 => {:name => 'DBTDS_4_9_5', :description => '4.9.5 (NCR) SQL Server'},
117-
7 => {:name => 'DBTDS_5_0', :description => '5.0 SQL Server'},
118-
8 => {:name => 'DBTDS_7_0', :description => 'Microsoft SQL Server 7.0'},
119-
9 => {:name => 'DBTDS_7_1/DBTDS_8_0', :description => 'Microsoft SQL Server 2000'},
120-
10 => {:name => 'DBTDS_7_2/DBTDS_9_0', :description => 'Microsoft SQL Server 2005'},
121-
11 => {:name => 'DBTDS_7_3', :description => 'Microsoft SQL Server 2008'},
122-
12 => {:name => 'DBTDS_7_4', :description => 'Microsoft SQL Server 2012/2014'}
112+
0 => { name: 'DBTDS_UNKNOWN', description: 'Unknown' },
113+
1 => { name: 'DBTDS_2_0', description: 'Pre 4.0 SQL Server' },
114+
2 => { name: 'DBTDS_3_4', description: 'Microsoft SQL Server (3.0)' },
115+
3 => { name: 'DBTDS_4_0', description: '4.0 SQL Server' },
116+
4 => { name: 'DBTDS_4_2', description: '4.2 SQL Server' },
117+
5 => { name: 'DBTDS_4_6', description: '2.0 OpenServer and 4.6 SQL Server.' },
118+
6 => { name: 'DBTDS_4_9_5', description: '4.9.5 (NCR) SQL Server' },
119+
7 => { name: 'DBTDS_5_0', description: '5.0 SQL Server' },
120+
8 => { name: 'DBTDS_7_0', description: 'Microsoft SQL Server 7.0' },
121+
9 => { name: 'DBTDS_7_1/DBTDS_8_0', description: 'Microsoft SQL Server 2000' },
122+
10 => { name: 'DBTDS_7_2/DBTDS_9_0', description: 'Microsoft SQL Server 2005' },
123+
11 => { name: 'DBTDS_7_3', description: 'Microsoft SQL Server 2008' },
124+
12 => { name: 'DBTDS_7_4', description: 'Microsoft SQL Server 2012/2014' }
123125
}.freeze
124126

125127
end

lib/tiny_tds/error.rb

-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ def initialize(message)
1010
@os_error_number = nil
1111
end
1212

13-
1413
end
1514
end

lib/tiny_tds/result.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
module TinyTds
22
class Result
3-
3+
44
include Enumerable
5-
6-
5+
76
end
87
end

lib/tiny_tds/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module TinyTds
2-
VERSION = File.read(File.expand_path("../../../VERSION", __FILE__)).chomp
2+
VERSION = File.read(File.expand_path('../../../VERSION', __FILE__)).chomp
33
end

tiny_tds.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- encoding: utf-8 -*-
2-
$:.push File.expand_path("../lib", __FILE__)
3-
require "tiny_tds/version"
2+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
3+
require 'tiny_tds/version'
44

55
Gem::Specification.new do |s|
66
s.name = 'tiny_tds'
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.description = 'TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library. Developed for the ActiveRecord SQL Server adapter.'
1414
s.files = `git ls-files`.split("\n") + Dir.glob('exe/*')
1515
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
1717
s.require_paths = ['lib']
1818
s.rdoc_options = ['--charset=UTF-8']
1919
s.extensions = ['ext/tiny_tds/extconf.rb']

0 commit comments

Comments
 (0)