Skip to content

Commit

Permalink
Merge pull request #10 from wundertax/bump
Browse files Browse the repository at this point in the history
Prefer to only define when needed
  • Loading branch information
mhenrixon authored Feb 29, 2020
2 parents 2f1967f + 603e292 commit 88dce4c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1,144 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true

source "https://rubygems.org"
source 'https://rubygems.org'
gemspec
14 changes: 7 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rake/testtask"
require "rubocop/rake_task"
require "yamllint/rake_task"
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'
require 'yamllint/rake_task'

task default: [:test, :rubocop, :yamllint]
task default: %i[test rubocop yamllint]

YamlLint::RakeTask.new do |t|
t.paths = %w(
t.paths = %w[
config/*.yml
.rubocop.yml
)
]
end
Rake::TestTask.new
RuboCop::RakeTask.new
Loading

0 comments on commit 88dce4c

Please sign in to comment.