Sha256: 3cf78ad40db62342fec779633aa73a1270725b28d2f3eb78a1fbba16e169ea30
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "endeca_on_demand/version" Gem::Specification.new do |s| s.name = "endeca_on_demand" s.version = EndecaOnDemand::VERSION s.platform = Gem::Platform::RUBY s.authors = ['sdomino'] s.email = ['sdomino@pagodabox.com'] s.homepage = 'http://github.com/sdomino/endeca_on-demand' s.summary = 'Formerly EndecaXml (endeca_xml), This gem provides an easy way for you to use the Thanx Media, Endeca On-Demand Web API' s.description = 'EndecaOnDemand will take a query-string and construct an XML query and send it to an hosted Endeca On-Demand Cluster. It will then parse the response and expose an API for using the response data.' s.rubyforge_project = "endeca_on_demand" 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_development_dependency 'rspec' s.add_development_dependency 'pry' s.add_dependency 'nokogiri' s.add_dependency 'builder' s.add_dependency 'activesupport', '~> 3.1' s.add_dependency 'i18n' s.add_dependency 'facets' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
endeca_on_demand-1.2.0 | endeca_on_demand.gemspec |