Sha256: fa0336fec2f9aafcc5f14b1e19ce1497e30cdeec61f12297216d3613b58d587b
Contents?: true
Size: 1.38 KB
Versions: 7
Compression:
Stored size: 1.38 KB
Contents
require_relative "lib/rails_api_logger/version" Gem::Specification.new do |spec| spec.name = "rails_api_logger" spec.version = RailsApiLogger::VERSION spec.authors = ["Alessandro Rodi"] spec.email = ["alessandro.rodi@renuo.ch"] spec.summary = "Log API requests like a king \u{1F451} " spec.description = "Log inbound and outbound API requests in your Rails application" spec.homepage = "https://github.com/renuo/rails_api_logger" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/renuo/rails_api_logger" spec.metadata["changelog_uri"] = "https://github.com/renuo/rails_api_logger/CHANGELOG.md" # 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. spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency("railties", ">= 4.1.0") spec.add_dependency("activerecord", ">= 4.1.0") spec.add_development_dependency "sqlite3", "~> 1.4.0" spec.add_development_dependency "standard", "~> 0.13.0" end
Version data entries
7 entries across 7 versions & 1 rubygems