-
Notifications
You must be signed in to change notification settings - Fork 2
/
active_record-embedded.gemspec
32 lines (26 loc) · 1.07 KB
/
active_record-embedded.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'active_record/embedded/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'active_record-embedded'
s.version = ActiveRecord::Embedded::VERSION
s.authors = ['Tom Scott']
s.email = ['[email protected]']
s.homepage = 'https://psychedeli.ca'
s.summary = 'Embedded data in your ActiveRecord models'
s.description = s.summary
s.license = 'MIT'
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(bin|test|spec|features)/})
end
s.add_dependency 'activerecord', ActiveRecord::Embedded::RAILS_VERSION
s.add_development_dependency 'mysql2'
s.add_development_dependency 'pg'
s.add_development_dependency 'pry-byebug', '~> 3'
s.add_development_dependency 'rails', ActiveRecord::Embedded::RAILS_VERSION
s.add_development_dependency 'rubocop', '~> 0.51'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'yard', '~> 0.9'
end