-
Notifications
You must be signed in to change notification settings - Fork 3
/
fame.gemspec
32 lines (27 loc) · 1.53 KB
/
fame.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fame/version'
Gem::Specification.new do |spec|
spec.name = "fame"
spec.version = Fame::VERSION
spec.authors = ["Alexander Schuch"]
spec.email = ["[email protected]"]
spec.summary = %q{Delightful localization of .storyboard and .xib files, right within Interface Builder.}
spec.description = %q{Delightful localization of .storyboard and .xib files, right within Interface Builder. Fame makes it easy to enable specific Interface Builder elements to be translated and exported to localizable .strings files.}
spec.homepage = "https://github.com/aschuch/fame"
spec.license = "MIT"
spec.files = Dir["lib/**/*"] + %w{ bin/fame README.md LICENSE }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.post_install_message = "Please add Fame.swift to your project to enable Interface Builder support.\n-> https://github.com/aschuch/fame/blob/master/platform/Fame.swift"
spec.add_dependency "commander", "~> 4.0"
spec.add_dependency "nokogiri", "~> 1.0"
spec.add_dependency "plist", "~> 3.0"
spec.add_dependency "colorize", "~> 0.7"
spec.add_dependency "pbxplorer", "~> 1.0"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "pry", "~> 0.10"
end