-
Notifications
You must be signed in to change notification settings - Fork 12
/
livechat_client.gemspec
33 lines (26 loc) · 1.06 KB
/
livechat_client.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'livechat/version'
Gem::Specification.new do |g|
g.name = "livechat_client"
g.version = LiveChat::VERSION.dup
g.platform = Gem::Platform::RUBY
g.authors = ["Alexandre Maia"]
g.email = ["[email protected]"]
g.homepage = "https://github.com/cxz/livechat_client"
g.summary = %q|LiveChat REST API Client|
g.description = %q|Ruby wrapper for the REST API at http://developers.livechatinc.com/rest-api/|
g.license = %q|MIT|
g.required_ruby_version = ">= 1.8.7"
g.required_rubygems_version = ">= 1.3.6"
g.add_development_dependency "rake"
g.add_development_dependency "rspec"
g.add_development_dependency "webmock", "~> 1.9.0"
g.add_runtime_dependency "hashie", ">= 1.2"
g.add_runtime_dependency "multi_json"
g.files = `git ls-files`.split("\n") rescue ''
g.require_paths = ["lib"]
g.test_files = Dir['spec/**/*.rb']
g.rdoc_options = ['--line-numbers', '--inline-source', '--title', 'livechat', '--main', 'README.md']
end