Sha256: e59194059d104cabb834551d32c238af756edeb2a344e004a864b36ef0632a42
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
Gem::Specification.new do |spec| spec.name = "spartan_apm" spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip spec.authors = ["Brian Durand"] spec.email = ["bbdurand@gmail.com"] spec.summary = "Simple redis backed application performance monitoring tool." spec.homepage = "https://github.com/bdurand/spartan_apm" spec.license = "MIT" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. ignore_files = %w[ . Appraisals Gemfile Gemfile.lock Rakefile bin/ docker/ gemfiles/ sample_data spec/ ] spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } } end spec.require_paths = ["lib"] spec.add_dependency "redis" spec.add_dependency "msgpack" spec.add_dependency "concurrent-ruby" spec.add_dependency "rack" spec.add_development_dependency "bundler" spec.required_ruby_version = ">= 2.5" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spartan_apm-0.0.0.rc1 | spartan_apm.gemspec |