forked from carlosparamio/rack-facebook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rack-facebook.gemspec
20 lines (20 loc) · 968 Bytes
/
rack-facebook.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = "rack-facebook"
s.version = "0.0.2"
s.date = "2009-01-09"
s.summary = "Rack middleware to verify and parse Facebook parameters"
s.email = "[email protected]"
s.homepage = "http://www.evolve.st/notebook/2009/1/9/rack-facebook-a-new-rack-middleware-to-parse-facebook-parameters"
s.description = "rack-facebook is a Rack middleware that checks the signature of Facebook params, and converts them to Ruby objects when appropiate. Also, it converts the request method from the Facebook POST to the original HTTP method used by the client."
s.has_rdoc = true
s.authors = ["Carlos Paramio"]
s.files = [
"README.markdown",
"Rakefile",
"rack-facebook.gemspec",
"lib/rack/facebook.rb"]
s.test_files = ["spec/facebook_spec.rb"]
s.rdoc_options = ["--main", "Rack::Facebook"]
#s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.add_dependency("rack", [">= 0.4.0"])
end