forked from roqua/physiqual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphysiqual.gemspec
58 lines (43 loc) · 1.79 KB
/
physiqual.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
49
50
51
52
53
54
55
56
57
58
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'physiqual/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'physiqual'
s.version = Physiqual::VERSION
s.authors = ['Frank Blaauw', 'Ando Emerencia', 'Maria Schenk']
s.homepage = 'http://physiqual.com'
s.summary = 'Ruby Engine for merging various datasources with diary questionnaire data'
s.description = 'Ruby Engine for merging various datasources with diary questionnaire data'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['spec/**/*']
s.add_dependency 'rails', '~> 4.2.4'
s.add_dependency 'oauth2'
s.add_dependency 'httparty'
s.add_dependency 'active_interaction'
# imputation
s.add_dependency 'spliner'
s.add_dependency 'interpolator'
# Jquery
s.add_dependency 'jquery-rails'
# Virtus models
s.add_dependency 'virtus'
# Omniauth google
s.add_dependency 'omniauth-google-oauth2'
s.add_dependency 'omniauth-fitbit-oauth2'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'webmock'
# For some reason I was not able to run the migrations with these gems installed
s.add_development_dependency 'spring'
s.add_development_dependency 'spring-commands-rspec'
s.add_development_dependency 'rubocop'
# freeze and change time for tests
s.add_development_dependency 'timecop'
# vcr to capture service responses
s.add_development_dependency 'vcr'
end