forked from vindi/vindi-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvindi.gemspec
More file actions
23 lines (20 loc) · 847 Bytes
/
vindi.gemspec
File metadata and controls
23 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "vindi/version"
Gem::Specification.new do |spec|
spec.name = "vindi"
spec.version = Vindi::VERSION
spec.authors = %q{Vindi}
spec.email = %q{developers@vindi.com.br}
spec.summary = %q{Ruby toolkit for working with the Vindi API}
spec.description = %q{Simple wrapper for the Vindi API}
spec.homepage = 'https://github.com/vindi/vindi-ruby'
spec.files = %w(README.md Rakefile vindi.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.require_paths = ["lib"]
spec.add_dependency "faraday", "~> 2.14"
spec.add_dependency "faraday-multipart"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 12.3.3"
end