forked from EmberAds/trifle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrifle.gemspec
28 lines (23 loc) · 1 KB
/
trifle.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "trifle/version"
Gem::Specification.new do |s|
s.name = "trifle"
s.version = Trifle::VERSION
s.authors = ["Cristiano Betta"]
s.email = ["cristiano@emberads.com"]
s.homepage = "http://github.com/EmberAds/trifle"
s.summary = "A GeoIP lookup in Redis"
s.description = "Stores the GeoIP databases in Redis and gives it a simple way to lookup IPs and map them to countries"
s.rubyforge_project = "trifle"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "active_support"
s.add_development_dependency "fakeredis", ">= 0.4.0"
s.add_dependency "redis", ">= 3.0.0"
s.add_dependency "fastercsv", ">= 1.5.5"
end