-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoculus.gemspec
29 lines (24 loc) · 1.31 KB
/
oculus.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/oculus/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul Rosania"]
gem.email = ["paul.rosania@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_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