-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathhello-rails.gemspec
41 lines (34 loc) · 1.66 KB
/
hello-rails.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
31
32
33
34
35
36
37
38
39
40
41
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "hello/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "hello-rails"
s.version = Hello::VERSION
s.authors = ["James Pinto", "Michal Papis"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/hello-gem/hello"
s.summary = "A Configurable Rails Authentication Engine"
s.description = "Provides a set of valuable features for Registration, Authentication, Management and Internationalization."
s.license = 'MIT'
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_runtime_dependency "before_actions", '~> 2.0'
s.add_runtime_dependency "colorize", '~> 0.7'
s.add_runtime_dependency "user_agent_parser", '~> 2.3'
s.add_runtime_dependency "http_accept_language", '~> 2.0'
s.add_runtime_dependency "rails-i18n", '~> 5.0'
s.add_development_dependency "sqlite3", '~> 1.3'
s.add_development_dependency 'rspec-rails', '~> 3.4'
s.add_development_dependency 'capybara', '~> 2.6'
s.add_development_dependency 'email_spec', '~> 2.0'
s.add_development_dependency 'factory_bot_rails', '~> 4.11'
s.add_development_dependency 'faker', '~> 1.6'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0'
s.add_development_dependency 'bdd', '~> 0.1'
s.add_development_dependency 'bcrypt', '~> 3.1'
s.add_development_dependency 'rubocop', '~> 0'
s.add_development_dependency 'rspec_junit_formatter', '~> 0.4'
# save_and_open_page
s.add_development_dependency 'launchy', '~> 2.4'
end