forked from scelis/twine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twine.gemspec
35 lines (30 loc) · 1.23 KB
/
twine.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
35
$LOAD_PATH.unshift 'lib'
require 'twine/version'
Gem::Specification.new do |s|
s.name = "twine"
s.version = Twine::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Manage strings and their translations for your iOS, Android and other projects."
s.homepage = "https://github.com/mobiata/twine"
s.email = "[email protected]"
s.authors = [ "Sebastian Celis" ]
s.has_rdoc = false
s.license = "BSD-3-Clause"
s.files = %w( Gemfile README.md LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("test/**/*")
s.test_files = Dir.glob("test/test_*")
s.required_ruby_version = ">= 2.0"
s.add_runtime_dependency('rubyzip', "~> 1.1")
s.add_runtime_dependency('safe_yaml', "~> 1.0")
s.add_development_dependency('rake', "~> 10.4")
s.add_development_dependency('minitest', "~> 5.5")
s.add_development_dependency('minitest-ci', "~> 3.0")
s.add_development_dependency('mocha', "~> 1.1")
s.executables = %w( twine )
s.description = <<desc
Twine is a command line tool for managing your strings and their translations.
It is geared toward Mac OS X, iOS, and Android developers.
desc
end