-
Notifications
You must be signed in to change notification settings - Fork 2
/
fci.gemspec
27 lines (27 loc) · 1.08 KB
/
fci.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
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','fci','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'fci'
s.version = FCI::VERSION
s.author = 'Anton Maminov'
s.email = '[email protected]'
s.homepage = 'https://github.com/mamantoha/fci'
s.platform = Gem::Platform::RUBY
s.summary = 'Freshdesk and Crowdin integration Command Line Interface (CLI)'
s.files = `git ls-files`.split("\n")
s.require_paths << 'lib'
# s.has_rdoc = true
# s.extra_rdoc_files = ['README.rdoc','fci.rdoc']
# s.rdoc_options << '--title' << 'fci' << '--main' << 'README.rdoc' << '-ri'
s.bindir = 'bin'
s.executables << 'fci'
s.add_runtime_dependency('nokogiri')
s.add_runtime_dependency('rubyzip')
s.add_runtime_dependency('crowdin-api')
s.add_runtime_dependency('freshdesk_api','>=0.1.1')
s.add_runtime_dependency('gli','2.13.0')
s.add_development_dependency('rake')
s.add_development_dependency('rdoc')
s.add_development_dependency('aruba')
s.add_development_dependency('byebug')
end