-
Notifications
You must be signed in to change notification settings - Fork 3
/
registry-rails.gemspec
21 lines (19 loc) · 1014 Bytes
/
registry-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/registry/rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Juan Felipe Alvarez Saldarriaga"]
gem.email = ["[email protected]"]
gem.description = <<-EOF
A container for storing objects and values in the application as long as the request lives. Registry implements
ruby's Singleton module, the same object is always available throughout your application.
EOF
gem.summary = %q{A container for storing objects and values in the application as long as the request lives.}
gem.homepage = "https://github.com/nebiros/registry-rails"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "registry-rails"
gem.require_paths = ["lib"]
gem.version = Registry::Rails::VERSION
gem.add_runtime_dependency "rails", "~> 4.1"
end