forked from fnando/browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.gemspec
40 lines (36 loc) · 1.55 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "browser/version"
Gem::Specification.new do |s|
s.name = "browser"
s.version = Browser::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Nando Vieira"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/fnando/browser"
s.summary = "Do some browser detection with Ruby."
s.description = s.summary
s.license = 'MIT'
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.post_install_message = [
"",
"#################### WARNING ##############################" ,
"# #" ,
"# Internet Explorer detection has changed on v1.0.0+. #" ,
"# If this is important for you, please read #" ,
"# https://github.com/fnando/browser#internet-explorer #" ,
"# #" ,
"###########################################################" ,
"\n"
].join("\n")
s.add_development_dependency "bundler", ">= 0"
s.add_development_dependency "rake"
s.add_development_dependency "rails"
s.add_development_dependency "rack-test"
s.add_development_dependency "minitest"
s.add_development_dependency "minitest-utils"
s.add_development_dependency "pry-meta"
end