Sha256: 5a1da7b05d1322ff9d10dd94840febf466d3ece9299f582243936bdaf07d65bb

Contents?: true

Size: 889 Bytes

Versions: 19

Compression:

Stored size: 889 Bytes

Contents

# -*- coding: UTF-8 -*_
#
# Copyright 2014 PagerDuty, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new(:spec)

RuboCop::RakeTask.new(:rubocop) do |t|
  t.patterns =
    %w( Rakefile Gemfile lita-github.gemspec lib/**/*.rb spec/*_spec.rb )
  t.fail_on_error = true
end

task default: [:rubocop, :spec]

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
lita-github-0.1.2 Rakefile
lita-github-0.1.1 Rakefile
lita-github-0.1.0 Rakefile
lita-github-0.0.16 Rakefile
lita-github-0.0.15 Rakefile
lita-github-0.0.14 Rakefile
lita-github-0.0.13 Rakefile
lita-github-0.0.12 Rakefile
lita-github-0.0.11 Rakefile
lita-github-0.0.10 Rakefile
lita-github-0.0.9 Rakefile
lita-github-0.0.8 Rakefile
lita-github-0.0.7 Rakefile
lita-github-0.0.6 Rakefile
lita-github-0.0.5 Rakefile
lita-github-0.0.4 Rakefile
lita-github-0.0.3 Rakefile
lita-github-0.0.2 Rakefile
lita-github-0.0.1 Rakefile