-
Notifications
You must be signed in to change notification settings - Fork 0
/
foreign_office.gemspec
25 lines (21 loc) · 1.15 KB
/
foreign_office.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "foreign_office/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "foreign_office"
s.version = ForeignOffice::VERSION
s.authors = ["Eric Draut","Adam Bialek"]
s.email = ["[email protected]"]
s.homepage = "http://edraut.github.io/foreign-office"
s.summary = "A light framework that provides functionality for listeners on web clients and publishers on ruby servers. Keep your business logic on the server whenever you can!"
s.description = "A light framework that provides functionality for listeners on web clients and publishers on ruby servers. Keep your business logic on the server whenever you can!"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "app/assets/javascripts/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]
s.add_dependency "rails", ">= 5.1", "< 6"
s.add_dependency "request_store", "< 2.0"
s.add_development_dependency "sqlite3", "< 2.0"
s.add_development_dependency "minitest", "< 6.0"
end