-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathevernote.gemspec
27 lines (21 loc) · 951 Bytes
/
evernote.gemspec
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
# -*- 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 = ["Chris Sepic"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/cgs/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."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "thrift_client", ">= 0.8.1"
s.add_development_dependency "rspec"
s.add_development_dependency "yard"
s.files = Dir.glob("{lib,spec,vendor}/**/*") +
%w(LICENSE README.mkd Rakefile .gitignore example.rb)
s.require_path = 'lib'
end