forked from NoBrainerORM/nobrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnobrainer.gemspec
28 lines (23 loc) · 1.02 KB
/
nobrainer.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
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
Gem::Specification.new do |s|
s.name = 'nobrainer'
s.version = '0.41.0'
s.platform = Gem::Platform::RUBY
s.authors = ['Nicolas Viennot']
s.email = ['[email protected]']
s.homepage = 'http://nobrainer.io'
s.summary = 'A Ruby ORM for RethinkDB'
s.description = 'The goal of NoBrainer is to provide a similar interface ' \
'compared to ActiveRecord and Mongoid to build data models ' \
'on top of RethinkDB while providing precise semantics.'
s.license = 'LGPL-3.0-only'
s.add_dependency 'activemodel', '>= 4.1.0', '< 8'
s.add_dependency 'activesupport', '>= 4.1.0', '< 8'
s.add_dependency 'middleware', '~> 0.1.0'
s.add_dependency 'rethinkdb', '>= 2.3.0', '< 2.5'
s.add_dependency 'symbol_decoration', '~> 1.1'
s.files = Dir['lib/**/*'] + ['README.md'] + ['LICENSE'] + ['CHANGELOG.md']
s.require_path = 'lib'
s.required_ruby_version = '>= 1.9.0'
end