# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) require "evernote/version" Gem::Specification.new do |s| s.name = "evernote" s.version = Evernote::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Kip Cole", "Chris Sepic"] s.email = ["kipcole9@gmail.com", "chris.sepic@gmail.com"] s.homepage = "http://github.com/kipcole9/evernote" s.summary = "High level wrapper for the Evernote API" s.description = "A high level wrapper around Evernote's Thrift-generated ruby code. It bundles up Evernote's thrift-generated code and creates some simple wrapper classes. Also vendors Thrift to ensure compatibility." s.required_rubygems_version = ">= 1.3.6" # Activesupport provides the #camelize function we use s.add_dependency "activesupport" s.add_development_dependency "rspec" s.add_development_dependency "yard" s.add_dependency "thrift_client", ">= 0.9.1" s.files = Dir.glob("{lib,spec,vendor}/**/*") + Dir.glob('ext/**/*.{c,h,rb}') + %w(LICENSE README.mkd Rakefile .gitignore example.rb) s.require_path = 'lib' end