File: otr-activerecord.gemspec

package info (click to toggle)
ruby-otr-activerecord 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: ruby: 561; sh: 133; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 790 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8

require File.expand_path('../lib/otr-activerecord/version.rb', __FILE__)
Gem::Specification.new do |gem|
  gem.name = 'otr-activerecord'
  gem.version = OTR::ActiveRecord::VERSION

  gem.description = 'Off The Rails ActiveRecord: Use ActiveRecord with Grape, Sinatra, Rack, or anything else! Formerly known as \'grape-activerecord\'.'
  gem.summary = 'Off The Rails: Use ActiveRecord with Grape, Sinatra, Rack, or anything else!'
  gem.homepage = 'https://github.com/jhollinger/otr-activerecord'

  gem.authors = ['Jordan Hollinger']
  gem.email = 'jordan.hollinger@gmail.com'

  gem.license = 'MIT'

  gem.files = Dir['lib/**/**'] + ['README.md', 'LICENSE']

  gem.required_ruby_version = '>= 3.0.0'

  gem.add_runtime_dependency 'activerecord', ['>= 6.0', '< 8.1']
end