forked from ukparliament/parliament.uk-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
68 lines (50 loc) · 1.65 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.0.2'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '5.0.1'
gem 'json-ld', '2.1.2'
gem 'vcard', '0.2.15'
# Parliament Ruby is a wrapper for the internal Parliament data API
gem 'parliament-ruby', '~> 0.7.6'
# Parliament NTriple processes N-triple data
gem 'parliament-ntriple', '~> 0.1.0'
# Parliament Grom Decorators decorates Grom nodes
gem 'parliament-grom-decorators', '~> 0.1.0'
# Pugin is the front-end component library used by Parliament
gem 'pugin', '0.6.0'
# HAML is used for front-end template rendering
gem 'haml', '4.0.7'
# Include time zone information
gem 'tzinfo-data'
# Use Puma as our web server
gem 'puma'
gem 'rack-timeout'
# Client for Bandiera feature flagging
gem 'bandiera-client'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# In development and test environments, use the dotenv gem
gem 'dotenv-rails'
# Use foreman as a gem in dev and test to orchestrate both the app and api
gem 'foreman'
gem 'subcontractor'
# Use Rubocop for static code quality analysis
gem 'rubocop'
end
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'web-console'
gem 'pry'
end
group :test do
gem 'capybara'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'webmock'
gem 'vcr'
end