forked from mjacobus/recruiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecruiter.gemspec
48 lines (40 loc) · 1.65 KB
/
recruiter.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
42
43
44
45
46
47
48
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "recruiter/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "recruiter"
s.version = Recruiter::VERSION
s.authors = ["Marcelo Jacobus"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/mjacobus/recruiter"
s.summary = "Recruiter is a Rails Engine for adding job posting functionality to a Rails APP"
s.description = <<-DESCRIPTION
Recruiter is a Rails Engine for adding job posting functionality to a Rails APP.
Users should be able to post articles
DESCRIPTION
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency 'kaminari'
s.add_dependency 'devise'
s.add_dependency 'omniauth'
s.add_dependency 'omniauth-facebook'
s.add_dependency 'omniauth-google_oauth2'
s.add_dependency 'omniauth-github'
s.add_dependency 'redcarpet', '~> 3.2.0'
s.add_dependency 'draper'
s.add_dependency 'simple_form'
s.add_dependency 'foundation-rails'
s.add_dependency 'jquery-rails'
s.add_dependency 'foundation-icons-sass-rails'
s.add_development_dependency "mysql2"
s.add_development_dependency "shoulda-matchers"
s.add_development_dependency "rspec-rails", '3.0.0.beta2'
s.add_development_dependency "simplecov"
s.add_development_dependency "coveralls"
s.add_development_dependency "machinist"
s.add_development_dependency "interactive_editor"
s.add_development_dependency "capybara"
s.add_development_dependency "faker"
s.add_development_dependency "spring-commands-rspec"
end