forked from IUBLibTech/physical_object_database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
111 lines (83 loc) · 2.84 KB
/
Gemfile
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
source 'https://rubygems.org'
#STANDARD CASES
#active_record-acts_as handles polymoriphic associations (technical metadata and it subsequent subclasses: open reel technical metatdata, disc technical metadata, etc)
gem "active_record-acts_as"
#allows like query syntax
gem 'activerecord-like', '0.0.6'
# counter_culture improves default count_cache handling and adds additional features
# removed; deprecate or resolve caching issue
# gem "counter_culture", "~> 0.1.18"
#nested_form handles form fields for the has_many objects associated to the main form object
gem "nested_form"
#gem "thin", "1.6.2"
#simple_enum handles the enumerated values for technical metadata fields (open reel tape size for instance)
#gem 'simple_enum'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.0'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use for pagination
gem 'will_paginate', '~> 3.0'
# Use CoffeeScript for .js.coffee assets and views
#gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# User jquery-ui
gem 'jquery-ui-rails', '~> 5.0'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'json'
gem 'config'
# roo adds XLSX read-only support
gem 'roo'
# pundit adds authorization support
gem 'pundit'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
gem 'rdoc', '~> 3.12.1'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
group :development, :test do
gem 'childprocess'
gem 'guard-livereload'
gem 'guard-rspec'
#allows capybara access to session variable
gem 'rack_session_access'
gem 'rspec-rails'
gem 'webmock'
gem 'byebug'
end
group :development do
gem 'spring-commands-rspec'
end
group :test do
gem 'selenium-webdriver'
gem 'capybara'
#for capybara javascript access
gem 'capybara-webkit'
gem 'launchy' # for viewing capybara pages
gem 'connection_pool' # for sharing client/server session in capybara tests with js: true
gem 'factory_bot_rails'
#gem 'cucumber', '1.2.5' # Spork not supported as of Cucumber 1.3.0, need to use 1.2.5
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
gem 'simplecov', require: false
gem 'coveralls', require: false
end
group :production do
# gem "thin", "1.6.2"
end