-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcode_analyzer.gemspec
23 lines (19 loc) · 967 Bytes
/
code_analyzer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require File.expand_path('../lib/code_analyzer/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Richard Huang"]
gem.email = ["[email protected]"]
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