forked from bokmann/sentient_user
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsentient_user.gemspec
26 lines (20 loc) · 993 Bytes
/
sentient_user.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sentient_user/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["bokmann"]
gem.email = ["[email protected]"]
gem.description = %q{lets the User model in most authentication frameworks know who is the current user}
gem.summary = %q{A trivial bit of common code}
gem.homepage = "http://github.com/bokmann/sentient_user"
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 = "sentient_user"
gem.require_paths = ["lib"]
gem.version = SentientUser::VERSION
gem.add_dependency "railties", "~> 3.1"
gem.add_development_dependency "rake"
gem.add_development_dependency "rdoc"
gem.add_development_dependency "shoulda", ">= 2.11.3"
gem.add_development_dependency "simplecov"
end