-
Notifications
You must be signed in to change notification settings - Fork 1
/
seatgeek.gemspec
28 lines (22 loc) · 1.02 KB
/
seatgeek.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'seat_geek/version'
Gem::Specification.new do |s|
s.name = "seatgeek"
s.version = SeatGeek::VERSION
s.authors = ["Dan Matthews"]
s.email = ["[email protected]"]
s.homepage = "http://platform.seatgeek.com"
s.summary = "A Ruby wrapper for the SeatGeek Platform API."
s.description = "This gem provides Ruby functionality around the SeatGeek Platform API (http://platform.seatgeek.com). It is designed to be framework agnostic and was originally developed for use in my day job at Ticket Evolution."
s.rubyforge_project = "seatgeek"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "faraday"
s.add_dependency "multi_json"
s.add_dependency "rake"
s.add_dependency "yajl-ruby"
s.add_development_dependency "rspec"
end