-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoogle_calendar_api_v2.gemspec
23 lines (20 loc) · 1.02 KB
/
google_calendar_api_v2.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'google_calendar_api_v2'
s.version = '0.1.3'
s.summary = "Work with Google Calendar using GData 2.0 + OAuth 1.0"
s.author = ['Charles Barbier']
s.email = '[email protected]'
s.homepage = 'http://www.github.com/unixcharles/google_calendar_api_v2'
s.files = Dir['README.md', 'LICENSE',
'lib/google_calendar_api_v2.rb',
'lib/google_calendar_api_v2/base.rb',
'lib/google_calendar_api_v2/client.rb',
'lib/google_calendar_api_v2/calendar.rb',
'lib/google_calendar_api_v2/event.rb',
'lib/google_calendar_api_v2/error/authentication.rb',
'lib/google_calendar_api_v2/response/base.rb',
'lib/google_calendar_api_v2/response/calendar.rb',
'lib/google_calendar_api_v2/response/event.rb']
s.require_path = 'lib'
s.add_runtime_dependency 'oauth'
end