Sha256: dd5955c4b7ecb082d4051b24c7cc21eaf52f7a01c5504873688db26741137e05

Contents?: true

Size: 972 Bytes

Versions: 2

Compression:

Stored size: 972 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/food_info/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Kali Donovan"]
  gem.email         = ["kali@deviantech.com"]
  gem.description   = %q{Generic Ruby interface to look up nutritional information on food.  Design is modular so other adapters can be plugged in, but only data source currently implemented is FatSecret.}
  gem.summary       = %q{API for researching nutritional information of various foods}
  gem.homepage      = "https://github.com/deviantech/food_info"

  gem.add_dependency('httparty', '>= 0.7.7')
  gem.add_dependency('hashie', '>= 1.1.0')

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = "food_info"
  gem.require_paths = ["lib"]
  gem.version       = FoodInfo::VERSION
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
food_info-0.0.2 food_info.gemspec
food_info-0.0.1 food_info.gemspec