-
Notifications
You must be signed in to change notification settings - Fork 20
/
fauna.gemspec
26 lines (23 loc) · 1019 Bytes
/
fauna.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
# -*- encoding: utf-8 -*-
require './lib/fauna/version'
Gem::Specification.new do |s|
s.name = 'fauna'
s.version = Fauna::VERSION.dup
s.author = 'Fauna, Inc.'
s.email = '[email protected]'
s.summary = 'FaunaDB Ruby driver'
s.description = 'Ruby driver for FaunaDB.'
s.homepage = 'https://github.com/fauna/faunadb-ruby'
s.license = 'MPL-2.0'
s.files = %w(CHANGELOG Gemfile LICENSE README.md Rakefile fauna.gemspec lib/fauna.rb) + Dir.glob('lib/fauna/**') + Dir.glob('spec/**')
s.extra_rdoc_files = %w(CHANGELOG LICENSE README.md)
s.rdoc_options = %w(--line-numbers --title Fauna --main README.md)
s.test_files = Dir.glob('spec/**')
s.require_paths = ['lib']
s.add_runtime_dependency 'faraday', '~> 0.9.0'
s.add_runtime_dependency 'net-http-persistent', '~> 2.9'
s.add_runtime_dependency 'json', '~> 1.8'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'simplecov-json', '~> 0.2.0'
s.add_development_dependency 'rspec_junit_formatter', '~> 0.3.0'
end