Sha256: 9da7e13cd05aff3a9ef66921ccbd827ecb4cb62d0259bc630e6bb5a794e41a81
Contents?: true
Size: 913 Bytes
Versions: 1
Compression:
Stored size: 913 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "openamplify/version" Gem::Specification.new do |s| s.name = "openamplify" s.version = OpenAmplify::VERSION s.authors = ["Greg Moreno"] s.email = ["greg.moreno@gmail.com"] s.homepage = "" s.summary = "Wrapper for the OpenAmplify API" s.description = "The OpenAmplify API reads text you supply and returns linguistic data explaining and classifying the content." s.rubyforge_project = "openamplify" 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_dependency 'faraday' s.add_development_dependency 'minitest' s.add_development_dependency 'nokogiri' s.add_development_dependency 'json' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openamplify-0.3.0 | openamplify.gemspec |