-
Notifications
You must be signed in to change notification settings - Fork 1
/
sinatra-controllers.gemspec
30 lines (25 loc) · 1.12 KB
/
sinatra-controllers.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/sinatra-controllers/version", __FILE__)
Gem::Specification.new do |s|
s.name = "sinatra-controllers"
s.version = Sinatra::Controllers::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Daniel Bretoi']
s.email = []
s.homepage = "https://github.com/danielb2/sinatra-controllers"
s.summary = "Adds controllers to Sinatra"
s.description = "Adds controllers to Sinatra"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "sinatra-controllers"
s.add_dependency "sinatra", ">= 1.0.0"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "minitest", "~> 2.0.0"
s.add_development_dependency "watchr"
s.add_development_dependency "rack-test", "~> 0.5.7"
s.add_development_dependency "awesome_print"
s.add_development_dependency "haml"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
end