-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfql.gemspec
31 lines (25 loc) · 952 Bytes
/
fql.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
28
29
30
31
# coding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "fql/version"
Gem::Specification.new do |s|
s.name = "fql"
s.version = Fql::VERSION
s.authors = ["Maarten Claes"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/mcls/fql"
s.summary = "Facebook Query Language library"
s.description = <<-EOF
A simple gem to easily use the Facebook Query Language. Just specify single
queries as strings or use hashes to compose multiqueries and send them to
Facebook using `Fql.execute(query)`.
EOF
s.required_ruby_version = '>= 1.9.0'
s.files = Dir["lib/**/*"] + ["MIT-LICENSE", "Rakefile", "README.markdown"]
s.test_files = Dir["spec/**/*"]
s.require_paths = ["lib"]
s.add_dependency "multi_json"
s.add_development_dependency "webmock"
s.add_development_dependency "vcr"
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
end