Sha256: 817399417bd86ceca39d0131986a77cae2848c80a3a79e56b57efa9c2bc00550
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sad_panda/version' Gem::Specification.new do |spec| spec.name = 'sad_panda' spec.version = SadPanda::VERSION spec.authors = ['Matt Buckley', 'Edwin Rozario'] spec.email = ['matt.d.buckley1212@gmail.com'] spec.description = %q{sad_panda is a gem featuring tools for sentiment analysis of natural language: positivity/negativity and emotion classification.} spec.summary = %q{sad_panda is a gem featuring tools for sentiment analysis of natural language: positivity/negativity and emotion classification.} spec.homepage = 'https://github.com/mattThousand/sad_panda' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' spec.add_runtime_dependency 'ruby-stemmer' spec.add_development_dependency 'pry' spec.add_development_dependency 'rspec' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sad_panda-1.1.0 | sad_panda.gemspec |