-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gemspec
25 lines (22 loc) · 948 Bytes
/
.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sinatra-example"
s.version = "1.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Jon Wood"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/jellybob/sinatra-example"
s.summary = "A base Sinatra application, with Cucumber and RSpec"
s.description = "This is a simple example I built while playing with Sinatra and Cucumber a bit, so that I could get to a good starting point."
s.add_dependency "rack"
s.add_dependency "sinatra"
s.add_dependency "haml"
s.add_development_dependency "shotgun"
s.add_development_dependency "rspec"
s.add_development_dependency "cucumber"
s.add_development_dependency "cucumber-sinatra"
s.add_development_dependency "capybara"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md)
s.executables = [ 'sinatra-example' ]
s.require_path = 'lib'
end