forked from jistr/mobvious
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobvious.gemspec
44 lines (35 loc) · 1.44 KB
/
mobvious.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
41
42
43
44
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mobvious/version"
Gem::Specification.new do |s|
s.name = "mobvious"
s.version = Mobvious::VERSION
s.authors = ["Jiří Stránský"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/jistr/mobvious"
s.summary = %q{Rack middleware for choosing a version of an interface to render for given request}
s.description = %q{Rack middleware for choosing a version of an interface to render for given request}
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_runtime_dependency "rack", ">= 1.1.0"
s.add_runtime_dependency "mobileesp_converted", '~> 0.2.0'
# == DEVELOPMENT DEPENDENCIES ==
# Smart irb
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
# Specs
s.add_development_dependency 'minitest'
s.add_development_dependency 'mocha'
s.add_development_dependency 'rack-test'
# Running tests during development
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-minitest'
# Linux Guard watching
s.add_development_dependency 'rb-inotify'
# Linux Guard notifications
s.add_development_dependency 'libnotify'
# Pretty printed test output
s.add_development_dependency 'turn'
end