summaryrefslogtreecommitdiffstats
path: root/evernote.gemspec
blob: fe95025143da9344778d52d8c1cd5169f1969add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- 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