forked from protobuf-ruby/beefcake
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbeefcake.gemspec
More file actions
33 lines (24 loc) · 1 KB
/
beefcake.gemspec
File metadata and controls
33 lines (24 loc) · 1 KB
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
32
33
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.name = 'beefcake'
s.version = '0.1.1'
s.date = '2011-01-21'
s.description = "A sane protobuf library for Ruby"
s.summary = s.description
s.authors = ["Blake Mizerany"]
# = MANIFEST =
s.files = %w[LICENSE README.md] + Dir["{lib,test}/**/*.rb"]
# = MANIFEST =
s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/}
s.extra_rdoc_files = %w[README.md LICENSE]
s.add_dependency 'crack', '>= 0.1.4'
s.add_dependency 'ruby-hmac', '>= 0.3.2'
s.add_development_dependency 'contest', '>= 0.1.2'
s.has_rdoc = true
s.homepage = "http://github.com/bmizerany/beefcake"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sinatra", "--main", "README.rdoc"]
s.require_paths = %w[lib]
s.rubyforge_project = 'beefcake'
s.rubygems_version = '1.1.1'
end