Sha256: f8cf2f915456db83e3c17901bcd4dadac51ec8aa05b439da66bf9e94b6d6bd2d

Contents?: true

Size: 1.75 KB

Versions: 5

Compression:

Stored size: 1.75 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tailor/version"

Gem::Specification.new do |s|
  s.name = "tailor"
  s.version = Tailor::VERSION

  s.author = "Steve Loveless"
  s.summary = "A Ruby style & complexity measurer"
  s.description = <<-DESC
tailor parses Ruby files and measures them with some style and static analysis
"rulers".  Default values for the Rulers are based on a number of style guides
in the Ruby community as well as what seems to be common.  More on this here
http://wiki.github.com/turboladen/tailor.

tailor's goal is to help you be consistent with your code, throughout your
project, whatever style that may be.
  DESC
  s.email = "steve.loveless@gmail.com"
  s.homepage = "http://github.com/turboladen/tailor"

  s.extra_rdoc_files = %w(History.rdoc README.rdoc)
  s.files = `git ls-files`.split("\n")
  s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }

  s.add_runtime_dependency(%q<log_switch>, ">= 0.3.0")
  s.add_runtime_dependency(%q<term-ansicolor>, ">= 1.0.5")
  s.add_runtime_dependency(%q<text-table>, ">= 1.2.2")

  s.add_development_dependency(%q<aruba>, ">=0")
  s.add_development_dependency(%q<bundler>, ">=0")
  s.add_development_dependency(%q<code_statistics>, ">=0")
  s.add_development_dependency(%q<cucumber>, ">= 1.0.2")
  s.add_development_dependency(%q<fakefs>, ">= 0.4.0")
  s.add_development_dependency(%q<rake>, ">= 0")
  s.add_development_dependency(%q<roodi>, ">= 2.1.0")
  s.add_development_dependency(%q<rspec>, ">= 2.5.0")
  s.add_development_dependency(%q<simplecov>, ">= 0.4.0")
  s.add_development_dependency(%q<yard>, ">= 0.7.0")
  s.add_development_dependency(%q<yard-cucumber>, ">= 2.1.7")
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tailor-1.1.2 tailor.gemspec
tailor-1.1.1 tailor.gemspec
tailor-1.1.0 tailor.gemspec
tailor-1.0.1 tailor.gemspec
tailor-1.0.0 tailor.gemspec