Sha256: 19565c0e48c3f55ed1e5ca7c8ebc24b6bb54ed659c2b4841d85967b6eea67e75
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) require 'rubocop/version' Gem::Specification.new do |s| s.name = 'rubocop' s.version = Rubocop::Version::STRING s.platform = Gem::Platform::RUBY s.required_ruby_version = '>= 1.9.2' s.authors = ['Bozhidar Batsov'] s.date = '2013-04-17' s.description = 'Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.' s.email = 'bozhidar@batsov.com' s.executables = ['rubocop'] s.extra_rdoc_files = ['LICENSE.txt', 'README.md'] s.files = ['.document', '.rspec', '.rubocop.yml', '.travis.yml', 'CHANGELOG.md', 'CONTRIBUTING.md', 'Gemfile', 'LICENSE.txt', 'README.md', 'Rakefile', 'bin/rubocop', 'rubocop.gemspec'] + Dir['lib/**/*.rb'] s.test_files = Dir['spec/**/*.rb'] s.homepage = 'http://github.com/bbatsov/rubocop' s.licenses = ['MIT'] s.require_paths = ['lib'] s.rubygems_version = '1.8.23' s.summary = 'Automatic Ruby code style checking tool.' s.add_runtime_dependency(%q<term-ansicolor>, '~> 1.1') s.add_development_dependency(%q<rake>, '~> 10.0') s.add_development_dependency(%q<rspec>, '~> 2.13') s.add_development_dependency(%q<yard>, '~> 0.8') s.add_development_dependency(%q<bundler>, '~> 1.3') s.add_development_dependency(%q<simplecov>, '~> 0.7') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.6.0 | rubocop.gemspec |