forked from becsegal/let_me_in
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlet_me_in.gemspec
More file actions
25 lines (20 loc) · 914 Bytes
/
Copy pathlet_me_in.gemspec
File metadata and controls
25 lines (20 loc) · 914 Bytes
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 "let_me_in/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "let_me_in"
s.version = LetMeIn::VERSION
s.authors = ["Becky Carella"]
s.email = ["becarella@gmail.com"]
s.homepage = "https://github.com/becarella/let_me_in"
s.summary = "Modules and controllers for user identification"
s.description = "Base controllers and modules for allowing users to signin/up with username/password or 3rd party via omniauth"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails"
s.add_dependency 'bcrypt-ruby', '~> 3.0.0'
s.add_dependency 'omniauth-identity'
s.add_development_dependency "rspec-rails"
s.add_development_dependency "capybara"
end