-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsimple_workflow.gemspec
More file actions
25 lines (21 loc) · 901 Bytes
/
simple_workflow.gemspec
File metadata and controls
25 lines (21 loc) · 901 Bytes
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
# frozen_string_literal: true
require './lib/simple_workflow/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'simple_workflow'
s.version = SimpleWorkflow::VERSION
s.authors = ['Uwe Kubosch']
s.email = 'uwe@kubosch.no'
s.summary = 'Add simple breadcrumbs "detour" workflow to Ruby On Rails.'
s.homepage = 'https://github.com/donv/simple_workflow'
s.description = 'Expands Ruby on Rails to allow simple breadcrumb detour workflows.'
s.required_ruby_version = '~> 3.1'
s.licenses = %w[MIT]
s.files = Dir['[A-Z]*', 'lib/**/*', 'test/**/*']
s.add_runtime_dependency('rails', '>=6.1', '<8')
s.add_development_dependency('rubocop', '~>1.0')
s.add_development_dependency('rubocop-performance', '~>1.5')
s.add_development_dependency('rubocop-rails', '~>2.4')
s.add_development_dependency('simplecov', '~>0.9')
s.metadata['rubygems_mfa_required'] = 'true'
end