forked from tessro/oculus
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoculus.gemspec
More file actions
32 lines (27 loc) · 1.53 KB
/
oculus.gemspec
File metadata and controls
32 lines (27 loc) · 1.53 KB
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/oculus/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul Rosania", "Robert R. Meyer"]
gem.email = ["paul.rosania@gmail.com", "Blue.Dog.Archolite@gmail.com"]
gem.description = %q{Oculus is a web-based logging SQL client. It keeps a history of your queries and the results they returned, so your research is always at hand, easy to share and easy to repeat or reproduce in the future.}
gem.summary = %q{Oculus is a web-based logging SQL client.}
gem.homepage = "http://oculusapp.com"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "oculus"
gem.require_paths = ["lib"]
gem.version = Oculus::VERSION
gem.add_runtime_dependency "sinatra", [">= 1.3.0"]
gem.add_runtime_dependency "vegas", [">= 0.1.4"]
gem.add_runtime_dependency "sequel", [">= 3"]
# gem.add_runtime_dependency "will_paginate", [">= 3"]
gem.add_runtime_dependency "sinatra-paginate", [">= 0.1.0"]
gem.add_development_dependency "rake"
gem.add_development_dependency "cucumber", [">= 1"]
gem.add_development_dependency "rspec", [">= 2"]
gem.add_development_dependency "capybara", [">= 1"]
# gem.add_development_dependency "mysql2", [">= 0.3.11"]
gem.add_development_dependency "pg", [">= 0.13.2"]
# gem.add_development_dependency "sequel", [">= 3"]
end