forked from refinery/refinerycms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefinerycms-authentication.gemspec
28 lines (24 loc) · 1.07 KB
/
refinerycms-authentication.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
# Encoding: UTF-8
$:.push File.expand_path('../../core/lib', __FILE__)
require 'refinery/version'
version = Refinery::Version.to_s
rails_version = ['>= 3.1.3', '< 3.3']
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = %q{refinerycms-authentication}
s.version = version
s.summary = %q{Authentication extension for Refinery CMS}
s.description = %q{The default authentication extension for Refinery CMS}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
s.authors = ['Philip Arndt', 'Uģis Ozols', 'David Jones', 'Steven Heidel']
s.license = %q{MIT}
s.require_paths = %w(lib)
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency 'refinerycms-core', version
s.add_dependency 'actionmailer', rails_version
s.add_dependency 'devise', '~> 2.0.0'
s.add_dependency 'orm_adapter', '~> 0.0.7'
end