forked from benschwarz/amnesia
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathamnesia.gemspec
24 lines (20 loc) · 839 Bytes
/
amnesia.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bundler/version'
Gem::Specification.new do |s|
s.name = "amnesia"
s.version = "1.0.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Ben Schwarz"]
s.email = ["ben.schwarz@gmail.com"]
s.homepage = "http://github.com/benschwarz/amnesia"
s.summary = "Amnesia is what you get when you lose your memory"
s.description = "With Amnesia you'll know exactly whats happening with memory when it comes to memcached."
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENCE README.markdown)
s.require_path = 'lib'
s.add_dependency "sinatra", ">= 1.0"
s.add_dependency "dalli", ">= 0.9.8"
s.add_dependency "gchart", "= 1.0.0"
s.add_dependency "haml", ">= 3.0.0"
end