Sha256: 558e3fbd55b702025b70c23a573f9411a7e8f3092cf317f9b85d4d3ee548be00
Contents?: true
Size: 1.84 KB
Versions: 4
Compression:
Stored size: 1.84 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "code_lister/version" Gem::Specification.new do |spec| spec.name = "code_lister" spec.version = CodeLister::VERSION spec.authors = ["Burin Choomnuan"] spec.email = ["agilecreativity@gmail.com"] spec.summary = %q(List/filter files like 'find then grep' command in Linux/Unix based system) spec.description = %q(List/filter files similar to 'find then grep' command in Linux/Unix based system) spec.homepage = "https://github.com/agilecreativity/code_lister" spec.license = "MIT" spec.files = Dir.glob("{bin,lib}/**/*") + %w[Gemfile Rakefile code_lister.gemspec README.md CHANGELOG.md LICENSE .rubocop.yml .gitignore] spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_runtime_dependency "thor", "~> 0.19" spec.add_runtime_dependency "agile_utils", "~> 0.1" spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake", "~> 10.3" spec.add_development_dependency "rspec", "~> 2.14" spec.add_development_dependency "guard-rspec", "~> 4.2" spec.add_development_dependency "awesome_print", "~> 1.2" spec.add_development_dependency "pry", "~> 0.9" spec.add_development_dependency "fuubar", "~> 1.3" spec.add_development_dependency "rubocop", "~> 0.23" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
code_lister-0.1.5 | code_lister.gemspec |
code_lister-0.1.4 | code_lister.gemspec |
code_lister-0.1.3 | code_lister.gemspec |
code_lister-0.1.2 | code_lister.gemspec |