forked from strongself/Generamba
-
Notifications
You must be signed in to change notification settings - Fork 5
/
generamba.gemspec
34 lines (28 loc) · 1.56 KB
/
generamba.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'generamba/version'
Gem::Specification.new do |spec|
spec.name = 'generamba'
spec.version = Generamba::VERSION
spec.authors = ['Egor Tolstoy', 'Andrey Zarembo', 'Beniamin Sarkisyan', 'Aleksandr Sychev']
spec.email = 'rambler.ios@rambler-co.ru'
spec.summary = 'Advanced code generator for Xcode projects with a nice and flexible template system.'
spec.description = 'Generamba is a powerful and easy-to-use Xcode code generator. It provides a project-based configuration, flexible templates system, the ability to generate code and tests simultaneously.'
spec.homepage = 'https://github.com/rambler-digital-solutions/Generamba'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.executables = ['generamba']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_runtime_dependency 'thor', '~> 1.0.1'
spec.add_runtime_dependency 'xcodeproj', '~> 1.27.0'
spec.add_runtime_dependency 'liquid', '~> 5.4.0'
spec.add_runtime_dependency 'git', '~> 1.19.1'
spec.add_runtime_dependency 'cocoapods-core', '~> 1.16.2'
spec.add_runtime_dependency 'terminal-table', '~> 3.0.2'
spec.add_development_dependency 'bundler', '~> 2.4'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'fakefs', '~> 0.6.1'
end