Sha256: afd8ee5291d2cf30a370b79dd116cd9a6f290710d746d6e9426da2d07ceef61b
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "intercom/version" Gem::Specification.new do |s| s.name = "intercom" s.version = Intercom::VERSION s.authors = ["Ben McRedmond", "Ciaran Lee", "Darragh Curran",] s.email = ["ben@intercom.io", "ciaran@intercom.io", "darragh@intercom.io"] s.homepage = "http://www.intercom.io" s.summary = %q{Ruby bindings for the Intercom API} s.description = %Q{Intercom (https://www.intercom.io) is a customer relationship management and messaging tool for web app owners. This library wraps the api provided by Intercom. See http://docs.intercom.io/api for more details. } s.rubyforge_project = "intercom" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency "rest-client" s.add_development_dependency 'minitest' s.add_development_dependency 'rake' s.add_development_dependency 'mocha' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
intercom-0.0.5 | intercom.gemspec |
intercom-0.0.4 | intercom.gemspec |