Sha256: 96f938b4212331e00f36890d223edab958ac3d5b4d03dc7ae778dbd699439d61
Contents?: true
Size: 962 Bytes
Versions: 10
Compression:
Stored size: 962 Bytes
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/code_analyzer/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Richard Huang"] gem.email = ["flyerhzm@gmail.com"] gem.description = %q{a code analyzer tool which extracted from rails_best_practices, it helps you easily build your own code analyzer tool.} gem.summary = %q{a code analyzer helps you build your own code analyzer tool.} gem.homepage = "https://github.com/flyerhzm/code_analyzer" gem.license = 'MIT' gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "code_analyzer" gem.require_paths = ["lib"] gem.version = CodeAnalyzer::VERSION gem.add_dependency "sexp_processor" gem.add_development_dependency "rspec" gem.add_development_dependency "rake" end
Version data entries
10 entries across 10 versions & 1 rubygems