-
Notifications
You must be signed in to change notification settings - Fork 2
/
vending-machine.gemspec
46 lines (36 loc) · 1.38 KB
/
vending-machine.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vend/version'
Gem::Specification.new do |gem|
gem.name = "vending-machine"
gem.version = Vend::VERSION
gem.authors = ["Mal Curtis"]
gem.email = ["[email protected]"]
gem.description = %q{Client for the Vend API}
gem.summary = %q{Exposes the Vend API as an object model}
gem.homepage = "https://github.com/snikch/vending-machine"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]
##
# Runtime dependencies.
# Faraday: HTTP client.
gem.add_runtime_dependency "faraday"
gem.add_runtime_dependency "faraday_middleware"
# Addressable: URI implementation.
gem.add_runtime_dependency "addressable"
# Virtus: declare attributes on plain Ruby objects.
gem.add_runtime_dependency "virtus", "~> 0.5.3"
##
# Development dependencies.
# MiniTest: unit test / spec library.
gem.add_development_dependency "minitest"
gem.add_development_dependency "ansi"
gem.add_development_dependency "turn"
# Rake: build tool.
gem.add_development_dependency "rake"
# WebMock: HTTP request stubs and expectations.
gem.add_development_dependency "webmock"
end