Sha256: 57b06e5351f8f58c103959f87b112b581339635d92d2ada16069cf5ab1397ced
Contents?: true
Size: 1.97 KB
Versions: 1
Compression:
Stored size: 1.97 KB
Contents
# frozen_string_literal: true require_relative "lib/roseflow/proxycurl/version" Gem::Specification.new do |spec| spec.name = "roseflow-proxycurl" spec.version = Roseflow::Proxycurl.gem_version spec.authors = ["Lauri Jutila"] spec.email = ["ljuti@roseflow.ai"] spec.summary = "Proxycurl integration for Roseflow." spec.description = "Proxycurl integration for Roseflow." spec.homepage = "https://github.com/roseflow-ai/roseflow-proxycurl" spec.license = "MIT" spec.required_ruby_version = ">= 3.2.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/roseflow-ai/roseflow-proxycurl" spec.metadata["changelog_uri"] = "https://github.com/roseflow-ai/roseflow-proxycurl/blob/master/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(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor]) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem spec.add_dependency "activesupport", "~> 6.0" spec.add_dependency "anyway_config", "~> 2.0" spec.add_dependency "dry-struct", "~> 1.6" spec.add_dependency "dry-transformer", "~> 1.0" spec.add_dependency "dry-validation", "~> 1.10" spec.add_dependency "faraday", "~> 2.0" spec.add_dependency "faraday-retry", "~> 2.0" spec.add_development_dependency "awesome_print" spec.add_development_dependency "pry" spec.add_development_dependency "webmock" spec.add_development_dependency "vcr" spec.add_development_dependency "roseflow" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roseflow-proxycurl-0.5.0 | roseflow-proxycurl.gemspec |