-
Notifications
You must be signed in to change notification settings - Fork 2
/
which_browser.gemspec
26 lines (20 loc) · 1.02 KB
/
which_browser.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "which_browser/version"
Gem::Specification.new do |s|
s.name = "which_browser"
s.version = WhichBrowser::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Spencer Steffen"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/citrus/which_browser"
s.summary = %q{Which Browser adds a few helper methods to a rack request making it easier to determine which browser is being used by the client.}
s.description = %q{Which Browser adds a few helper methods to a rack request making it easier to determine which browser is being used by the client.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency('rack', '> 1')
s.add_development_dependency('rake', '> 0')
s.add_development_dependency('minitest', '~> 2.1')
s.add_development_dependency('minitest_should', '~> 0.3')
end