forked from andypike/rectify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrectify.gemspec
More file actions
33 lines (26 loc) · 1.21 KB
/
rectify.gemspec
File metadata and controls
33 lines (26 loc) · 1.21 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
# frozen_string_literal: true
require_relative 'lib/rectify/version'
Gem::Specification.new do |spec|
spec.name = 'rectify'
spec.version = Rectify::VERSION
spec.authors = ['Andy Pike, Dmytro Khoma']
spec.email = ['dima.homa5@gmail.com']
spec.summary = 'Improvements for building Rails apps'
spec.description = 'Build Rails apps in a more maintainable way'
spec.homepage = 'https://github.com/Mechetel/rectify'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
spec.files = Dir['LICENSE.txt', 'readme.md', 'lib/**/*']
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Mechetel'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'actionpack', '>= 7.2.2'
spec.add_dependency 'activemodel', '>= 7.2.2'
spec.add_dependency 'activerecord', '>= 7.2.2'
spec.add_dependency 'activesupport', '>= 7.2.2'
spec.add_dependency 'virtus', '~> 2.0'
spec.add_dependency 'wisper', '~> 3.0'
end