forked from Dynamoid/dynamoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamoid.gemspec
57 lines (51 loc) · 1.86 KB
/
dynamoid.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
47
48
49
50
51
52
53
54
55
56
57
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dynamoid/version'
Gem::Specification.new do |spec|
spec.name = 'dynamoid'
spec.version = Dynamoid::VERSION
# Keep in sync with README
spec.authors = [
'Josh Symonds',
'Logan Bowers',
'Craig Heneveld',
'Anatha Kumaran',
'Jason Dew',
'Luis Arias',
'Stefan Neculai',
'Philip White',
'Peeyush Kumar',
'Sumanth Ravipati',
'Pascal Corpet',
'Brian Glusman',
'Peter Boling',
'Andrew Konchin'
]
spec.email = ['[email protected]', '[email protected]']
spec.description = "Dynamoid is an ORM for Amazon's DynamoDB that supports offline development, associations, querying, and everything else you'd expect from an ActiveRecord-style replacement."
spec.summary = "Dynamoid is an ORM for Amazon's DynamoDB"
spec.extra_rdoc_files = [
'LICENSE.txt',
'README.md'
]
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|test|spec|features|.dev|Vagrantfile)/}) }
spec.homepage = 'http://github.com/Dynamoid/Dynamoid'
spec.licenses = ['MIT']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activemodel', '>=4'
spec.add_runtime_dependency 'aws-sdk-dynamodb', '~> 1'
spec.add_runtime_dependency 'concurrent-ruby', '>= 1.0'
spec.add_runtime_dependency 'null-logger'
spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'wwtd'
spec.add_development_dependency 'yard'
end