forked from westonganger/active_snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_snapshot.gemspec
More file actions
36 lines (27 loc) · 1.19 KB
/
active_snapshot.gemspec
File metadata and controls
36 lines (27 loc) · 1.19 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
require_relative 'lib/active_snapshot/version'
Gem::Specification.new do |s|
s.name = "active_snapshot"
s.version = ActiveSnapshot::VERSION
s.authors = ["Weston Ganger"]
s.email = ["weston@westonganger.com"]
s.summary = "Dead simple snapshot versioning for ActiveRecord models and associations."
s.description = s.summary
s.homepage = "https://github.com/westonganger/active_snapshot"
s.license = "MIT"
s.metadata["source_code_uri"] = s.homepage
s.metadata["changelog_uri"] = File.join(s.homepage, "blob/master/CHANGELOG.md")
s.files = Dir.glob("{lib/**/*}") + %w{ LICENSE README.md Rakefile CHANGELOG.md }
s.require_path = 'lib'
s.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
s.add_runtime_dependency "activerecord"
s.add_runtime_dependency "railties"
s.add_runtime_dependency "activerecord-import"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "minitest-reporters"
s.add_development_dependency "minitest-spec-rails"
s.add_development_dependency "rspec-mocks"
if RUBY_VERSION.to_f >= 2.4
s.add_development_dependency "warning"
end
end