Sha256: 406e172db0abe2f8a0a42f5df2684351b017a919828bd1b319d069076c13ac27
Contents?: true
Size: 1.66 KB
Versions: 3
Compression:
Stored size: 1.66 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'atd/version' Gem::Specification.new do |spec| spec.name = "atd" spec.version = ATD::VERSION spec.authors = ["ACecretMaster"] spec.email = ["izwick.schachter@gmail.com"] spec.summary = 'The assistant technical director of your website. It does the dirty work so you can see the big picture.' spec.homepage = "https://rubygems.org/gems/atd" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. raise "RubyGems 2.0 or newer is required to protect against public gem pushes." unless spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "rack", "~> 2.0" spec.add_runtime_dependency "webrick", "~> 1.3" spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "minitest-reporters", "~> 1.1" spec.add_development_dependency "rubocop", "~> 0" spec.add_development_dependency "yard", "~> 0.9" spec.add_development_dependency "rack-test", "~> 0.6" spec.add_development_dependency "simplecov", "~> 0.12" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
atd-0.3.2 | atd.gemspec |
atd-0.3.1 | atd.gemspec |
atd-0.2.0.TEST.GITLAB1 | atd.gemspec |