-
Notifications
You must be signed in to change notification settings - Fork 2
/
kithe.gemspec
51 lines (39 loc) · 2.1 KB
/
kithe.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "kithe/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "kithe"
s.version = Kithe::VERSION
s.authors = ["Jonathan Rochkind"]
s.email = ["jrochkind@sciencehistory.org"]
s.homepage = "https://github.com/sciencehistory/kithe"
s.summary = "Shareable tools/components for building a digital collections app in Rails."
#s.description = "TODO: Description of Kithe."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/*/"].delete_if {|a| a =~ %r{/dummy/log/}}
s.required_ruby_version = '>= 2.5'
s.add_dependency "rails", ">= 6.0", "< 8.1"
s.add_dependency "attr_json", "~> 2.0"
s.add_dependency "simple_form", ">= 4.0", "< 6.0"
s.add_dependency "shrine", "~> 3.3" # file attachment handling
s.add_dependency "shrine-url", "~> 2.0"
s.add_dependency "fastimage", "~> 2.0" # use by default for image dimensions
s.add_dependency "marcel" # use by default for content-type detection
s.add_dependency "pdf-reader", "~> 2.0" # for pdf metadata extraction
s.add_dependency "tty-command", ">= 0.8.2", "< 2" # still at pre-1.0 when we write this. :(
s.add_dependency "ruby-progressbar", "~> 1.0"
s.add_dependency "mini_mime" # already a rails dependency, but we use in derivative filename construction
s.add_dependency "fx", ">= 0.6.0", "< 1"
s.add_dependency "traject", "~> 3.0", ">= 3.1.0.rc1" # for Solr or other indexing
s.add_dependency "rsolr", "~> 2.2" # for some low-level solr stuff
s.add_development_dependency "appraisal" # CI testing under multiple rails versions
s.add_development_dependency "dimensions" # checking image width of transformers in tests
s.add_development_dependency "db-query-matchers", "< 1"
s.add_development_dependency "pg"
s.add_development_dependency "yard-activesupport-concern"
s.add_development_dependency "webmock", "~> 3.0"
s.add_development_dependency 'sane_patch', "< 2"
s.add_development_dependency "rspec-rails"
end