-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added rubocop * applied lint * added lint check in ci
- Loading branch information
1 parent
67b5cd1
commit f0c683f
Showing
21 changed files
with
288 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,5 @@ tmp | |
|
||
# Mac finder artifacts | ||
.DS_Store | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Gemspec/RequiredRubyVersion: | ||
Enabled: false | ||
|
||
Layout/LineLength: | ||
Enabled: false | ||
Metrics: | ||
Enabled: false | ||
Naming/ConstantName: | ||
Enabled: false | ||
|
||
Style/FrozenStringLiteralComment: | ||
Enabled: false | ||
Style/Documentation: | ||
Enabled: false | ||
Style/AndOr: | ||
Enabled: false | ||
Style/StringConcatenation: | ||
Enabled: false | ||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
Style/OptionalBooleanParameter: | ||
Enabled: false | ||
Style/TernaryParentheses: | ||
EnforcedStyle: require_parentheses_when_complex | ||
|
||
Naming/PredicateName: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
require "bundler/gem_tasks" | ||
require 'bundler/gem_tasks' | ||
require 'rspec/core/rake_task' | ||
|
||
RSpec::Core::RakeTask.new('spec') | ||
|
||
# If you want to make this the default task | ||
task :default => :spec | ||
task default: :spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'creek/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "creek" | ||
spec.name = 'creek' | ||
spec.version = Creek::VERSION | ||
spec.authors = ["pythonicrubyist"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q{A Ruby gem that streams and parses large Excel(xlsx and xlsm) files fast and efficiently.} | ||
spec.summary = %q{A Ruby gem for parsing large Excel(xlsx and xlsm) files.} | ||
spec.homepage = "https://github.com/pythonicrubyist/creek" | ||
spec.license = "MIT" | ||
spec.authors = ['pythonicrubyist'] | ||
spec.email = ['[email protected]'] | ||
spec.description = 'A Ruby gem that streams and parses large Excel(xlsx and xlsm) files fast and efficiently.' | ||
spec.summary = 'A Ruby gem for parsing large Excel(xlsx and xlsm) files.' | ||
spec.homepage = 'https://github.com/pythonicrubyist/creek' | ||
spec.license = 'MIT' | ||
|
||
spec.files = `git ls-files`.split($/) | ||
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.required_ruby_version = '>= 2.0.0' | ||
|
||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency 'rspec', '~> 3.6.0' | ||
spec.add_development_dependency 'bundler' | ||
spec.add_development_dependency 'pry-byebug' | ||
spec.add_development_dependency 'rake' | ||
spec.add_development_dependency 'rspec', '~> 3.6.0' | ||
spec.add_development_dependency 'rubocop' | ||
|
||
spec.add_dependency 'nokogiri', '>= 1.10.0' | ||
spec.add_dependency 'rubyzip', '>= 1.0.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.