forked from moiristo/deep_cloneable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeep_cloneable.gemspec
More file actions
21 lines (19 loc) · 853 Bytes
/
deep_cloneable.gemspec
File metadata and controls
21 lines (19 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
$:.unshift File.expand_path('../lib', __FILE__)
require 'deep_cloneable/version'
Gem::Specification.new do |s|
s.name = 'deep_cloneable'
s.version = DeepCloneable::VERSION
s.authors = ['Reinier de Lange']
s.description = 'Extends the functionality of ActiveRecord::Base#dup to perform a deep clone that includes user specified associations. '
s.summary = 'This gem gives every ActiveRecord::Base object the possibility to do a deep clone.'
s.email = 'rjdelange@icloud.com'
s.extra_rdoc_files = ['LICENSE']
s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
s.homepage = 'https://github.com/moiristo/deep_cloneable'
s.licenses = ['MIT']
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.9.3'
s.require_paths = ['lib']
s.add_runtime_dependency('activerecord', ['>= 3.1.0', '< 8'])
end