forked from scambra/devise_invitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devise_invitable.gemspec
30 lines (25 loc) · 1.06 KB
/
devise_invitable.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'devise_invitable/version'
Gem::Specification.new do |s|
s.name = "devise_invitable"
s.version = DeviseInvitable::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Sergio Cambra"]
s.email = ["sergio@entrecables.com"]
s.homepage = "https://github.com/scambra/devise_invitable"
s.summary = "An invitation strategy for Devise"
s.description = "It adds support for send invitations by email (it requires to be authenticated) and accept the invitation by setting a password."
s.files = Dir["{app,config,lib}/**/*"] + %w[LICENSE README.rdoc]
s.require_path = "lib"
s.rdoc_options = ["--main", "README.rdoc", "--charset=UTF-8"]
s.required_ruby_version = '>= 1.8.6'
s.required_rubygems_version = '>= 1.3.6'
s.add_development_dependency('bundler', '~> 1.0.7')
{
'rails' => ['>= 3.0.0', '<= 3.2'],
'devise' => '~> 1.3.1'
}.each do |lib, version|
s.add_runtime_dependency(lib, *version)
end
end