-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgena.gemspec
32 lines (29 loc) · 1.14 KB
/
gena.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'constants'
Gem::Specification.new do |s|
s.name = 'gena'
s.version = Gena::VERSION
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.summary = "iOS code generation tool"
s.description = "Code generation and automation tool"
s.authors = ["Aleksey Garbarev"]
s.email = 'alex.garbarev@gmail.com'
s.files = [ "lib/gena.rb",
"lib/config/config.rb",
"lib/plugin/plugin.rb",
"lib/utils/utils.rb",
"lib/utils/xcode_utils.rb",
"lib/cli/init.rb",
"lib/cli/cli.rb",
"lib/codegen/codegen.rb",
"lib/constants.rb"]
s.homepage =
'http://rubygems.org/gems/gena'
s.license = 'MIT'
s.executables << 'gena'
s.add_runtime_dependency 'xcodeproj', '~> 1.7', '>= 1.7.0'
s.add_runtime_dependency 'thor', '~> 0.20', '>= 0.20.0'
s.add_runtime_dependency 'liquid', '~> 4.0', '>= 4.0.0'
s.add_runtime_dependency 'plist', '~> 3.2', '>= 3.2.0'
end