Sha256: a065a2027d0c6e0849701ea8a76020edf30149792e49a7f95c9e1ffcdf8c4229

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

# encoding: utf-8

$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'rubocop/rspec/version'

Gem::Specification.new do |spec|
  spec.name = 'rubocop-rspec'
  spec.summary = 'Code style checking for RSpec files'
  spec.description = <<-end_description
    Code style checking for RSpec files.
    A plugin for the RuboCop code style enforcing & linting tool.
  end_description
  spec.homepage = 'http://github.com/nevir/rubocop-rspec'
  spec.authors = ['Ian MacLeod', 'Nils Gemeinhardt']
  spec.email = ['ian@nevir.net', 'git@nilsgemeinhardt.de']
  spec.licenses = ['MIT']

  spec.version = Rubocop::RSpec::Version::STRING
  spec.platform = Gem::Platform::RUBY
  spec.required_ruby_version = '>= 1.9.2'

  spec.require_paths = ['lib']
  spec.files = Dir[
    '{lib,spec}/**/*',
    '*.md',
    '*.gemspec',
    'Gemfile',
    'Rakefile'
  ]
  spec.test_files = spec.files.grep(/^spec\//)
  spec.extra_rdoc_files = ['MIT-LICENSE.md', 'README.md']

  spec.add_runtime_dependency('rubocop', '~> 0.19', '>= 0.19')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-rspec-1.0.rc2 rubocop-rspec.gemspec