Skip to content
This repository has been archived by the owner on May 8, 2020. It is now read-only.

Commit

Permalink
Fix Rubocop violations; require Ruby 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aevernon committed Feb 12, 2018
1 parent f10c583 commit 862d2f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
AllCops:
TargetRubyVersion: 2.1
Metrics/LineLength:
Enabled: false
Metrics/MethodLength:
Expand All @@ -6,3 +8,5 @@ Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Style/EvalWithLocation:
Enabled: false
5 changes: 2 additions & 3 deletions commission_junction.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'commission_junction/version'
Expand All @@ -18,8 +17,8 @@ Gem::Specification.new do |gem|
gem.require_paths = ['lib']
gem.add_dependency 'httparty', '~> 0.15'
gem.add_dependency 'ox', '~> 2.8'
gem.add_development_dependency 'minitest', '> 0'
gem.add_development_dependency 'json', '~> 2.1'
gem.add_development_dependency 'minitest', '> 0'
gem.license = 'BSD-3-Clause'
gem.required_ruby_version = '~> 2.0'
gem.required_ruby_version = '~> 2.1'
end

0 comments on commit 862d2f9

Please sign in to comment.