forked from Dynamoid/dynamoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamoid.gemspec
More file actions
59 lines (52 loc) · 2.42 KB
/
dynamoid.gemspec
File metadata and controls
59 lines (52 loc) · 2.42 KB
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
58
59
# 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 = ['peter.boling@gmail.com', 'brian@stellaservice.com', 'andry.konchin@gmail.com']
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"
# Ignore not commited files
spec.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE.txt', 'lib/**/*'] & `git ls-files`.split("\n")
spec.homepage = 'http://github.com/Dynamoid/dynamoid'
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/Dynamoid/dynamoid/issues',
'changelog_uri' => "https://github.com/Dynamoid/dynamoid/tree/v#{Dynamoid::VERSION}/CHANGELOG.md",
'source_code_uri' => "https://github.com/Dynamoid/dynamoid/tree/v#{Dynamoid::VERSION}",
'documentation_uri' => "https://rubydoc.info/gems/dynamoid/#{Dynamoid::VERSION}",
}
spec.add_runtime_dependency 'activemodel', '>=4'
spec.add_runtime_dependency 'aws-sdk-dynamodb', '~> 1.0'
spec.add_runtime_dependency 'concurrent-ruby', '>= 1.0'
spec.add_development_dependency 'appraisal', '~> 2.2'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'coveralls', '~> 0.8'
spec.add_development_dependency 'pry', '~> 0.12.0' # Since 0.13.0 pry is incompatible with old versions of pry-byebug.
# We use these old versions of pry-byebug to run tests on Ruby 2.3 which new versions dont't support
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'wwtd', '~> 1.4'
spec.add_development_dependency 'yard', '~> 0.9'
end