-
Notifications
You must be signed in to change notification settings - Fork 2
/
jinda.gemspec
executable file
·29 lines (27 loc) · 1.3 KB
/
jinda.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jinda/version'
Gem::Specification.new do |spec|
spec.name = 'jinda'
spec.version = Jinda::VERSION
spec.authors = ['Prateep Kul', 'Korakot Leemakdej']
spec.email = ['1.0@kul.asia']
spec.summary = %q{Rails workflow from mind map: Freemind}
spec.description = %q{Generate Rails workflow from mind map: Freemind}
spec.homepage = 'https://github.com/kul1/jinda'
spec.license = 'MIT'
spec.files = Dir['Rakefile', '{app,config,bin,lib,test}/**/*', 'README*', 'LICENSE*', 'lib/generators/jinda/templates/.env'] & `git ls-files -z`.split("\0")
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5.0'
# spec.add_development_dependency 'rake', '~> 12.3.3'
# spec.add_development_dependency 'activesupport','~> 4.1.11', '>= 4.1.11'
# mongoid bottle neck
spec.add_development_dependency 'mongoid', '~> 7.1.0'
spec.add_development_dependency 'mongoid-rspec', '~> 2.1.0'
# then require rails < 6.1.0 bx mongoid
# spec.add_runtime_dependency 'rails', '< 6.1'
spec.add_runtime_dependency 'rexml', '~> 3.2'
end