Skip to content

Instantly share code, notes, and snippets.

@ginkel
Last active February 2, 2016 11:11
Show Gist options
  • Save ginkel/9e27221d911c663e4107 to your computer and use it in GitHub Desktop.
Save ginkel/9e27221d911c663e4107 to your computer and use it in GitHub Desktop.
bundler error on JRuby 9.0.5.0
FROM jruby:9.0.5.0
# Expose port 3000 to the Docker host, so we can access it
# from the outside.
EXPOSE 3000
# Configure the main working directory.
RUN mkdir /app
WORKDIR /app
# Install essential dependencies
RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends build-essential git \
&& rm -rf /var/lib/apt/lists/*
# Copy the Gemfile as well as the Gemfile.lock and install
# the RubyGems. This is a separate step so the dependencies
# will be cached unless changes to one of those two files
# are made.
COPY Gemfile Gemfile.lock /app/
# We're overwriting the location where bundler was installed, so we have to install it afresh
# In future we may just take over the jruby image and clean it out a bit.
RUN gem install bundler
# First check if we have the gems already installed (coming from a previous run),
# then try using parallel jobs (2 * available CPU cores – it's way faster,
# but it breaks sometimes).
# As last resort, fall back to the sequential installation (slower and safer)
RUN bundle check \
|| bundle install --binstubs --jobs 40 --retry 5 \
|| bundle install --binstubs
source 'https://rubygems.org'
ruby '2.2.3', engine: 'jruby', engine_version: '9.0.5.0'
gem 'rails', '4.2.5.1'
gem 'activerecord-jdbcpostgresql-adapter', platform: :jruby
gem 'pg', platform: :mri
gem 'activerecord-nulldb-adapter'
gem 'active_model_serializers'
gem 'attr_encrypted'
gem 'encryptor', '< 2.0.0'
gem 'therubyrhino'
gem 'jquery-rails'
gem 'turbolinks'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'puma'
gem 'paper_trail'
group :test do
gem 'rspec'
gem 'rspec-rails', '~> 3.0'
gem 'guard'
gem 'guard-rspec', require: false
gem 'capybara'
gem 'database_cleaner'
gem 'rspec-activejob'
end
group :development, :test do
gem 'gem_reloader'
gem 'pry-rails'
gem 'pry-nav'
gem 'factory_girl_rails'
gem 'spork'
gem 'brakeman', require: false
gem 'codacy-coverage', require: false
gem 'rubocop', require: false
gem 'awesome_print'
gem 'fuubar'
gem 'faker'
gem 'colorize'
end
group :production do
gem 'rails_serve_static_assets'
end
# Use devise for user management
gem 'devise'
gem 'devise_token_auth', github: 'lynndylanhurley/devise_token_auth', branch: 'master'
gem 'devise_zxcvbn', github: 'bitzesty/devise_zxcvbn', tag: 'v2.0.0'
gem 'devise-async'
gem 'cancancan', '~> 1.10'
gem 'omniauth'
gem 'annotate'
gem 'rack-cors'
gem 'paranoia', '~> 2.0'
gem 'paranoia_uniqueness_validator'
gem 'hstore_accessor'
gem 'nested-hstore'
gem 'activeadmin', '~> 1.0.0.pre2'
gem 'activeadmin_hstore_editor', github: 'wild5r/activeadmin_hstore_editor', branch: 'master'
gem 'active_admin_import', github: 'activeadmin-plugins/active_admin_import', branch: 'master'
gem 'select2-rails'
gem 'activeadmin-select2', github: 'mfairburn/activeadmin-select2'
gem 'uglifier'
gem 'security_identifiers', github: 'invisiblelines/security_identifiers'
gem 'binding_of_caller', '~> 0.7.3.pre1'
gem 'grape'
gem 'grape-swagger', github: 'tim-vandecasteele/grape-swagger', branch: 'master'
gem 'grape-swagger-rails'
gem 'grape-entity'
gem 'grape_devise_token_auth'
gem 'grape-rails-cache'
gem 'gson', platform: :jruby
gem 'hashie-forbidden_attributes'
gem 'le'
gem 'newrelic_rpm'
gem 'pdf-forms'
gem 'paperclip'
gem 'mimemagic'
gem 'aws-sdk', '~> 2'
gem 'intercom'
gem 'with_advisory_lock'
gem 'safe_shell'
gem 'sidekiq', '< 5'
gem 'sinatra', require: false
gem 'wannabe_bool'
gem 'email_validator'
gem 'phony_rails'
gem 'carmen'
gem 'rubyXL'
gem 'gettext_i18n_rails'
gem 'gettext', '>=3.0.2', require: false
gem 'postgres_ext'
gem 'redis-rails'
GIT
remote: git://github.com/activeadmin-plugins/active_admin_import.git
revision: 8a7f300c94a4fbac9bd57d2d6d28248686b23087
branch: master
specs:
active_admin_import (3.0.0.pre)
activerecord-import (~> 0.10.0)
rails (>= 4.0)
rchardet (~> 1.6)
rubyzip (~> 1.1, >= 1.0.0)
GIT
remote: git://github.com/bitzesty/devise_zxcvbn.git
revision: fbb3a837de3e63e0f0845cbf25b3e368002078cb
tag: v2.0.0
specs:
devise_zxcvbn (2.0.0)
devise
zxcvbn-js (~> 4.2.0)
GIT
remote: git://github.com/invisiblelines/security_identifiers.git
revision: 458c1e3b78d86dae3ba98a911c8e3c80d5024044
specs:
security_identifiers (0.1.1)
GIT
remote: git://github.com/lynndylanhurley/devise_token_auth.git
revision: 4ba29bd1103c4934d9f6230e1d78afdc69c9a993
branch: master
specs:
devise_token_auth (0.1.37)
devise (> 3.5.2, < 4.1)
rails (< 6)
GIT
remote: git://github.com/mfairburn/activeadmin-select2.git
revision: 9528463492ee29f2b59d369e84242d6e0f47ee99
specs:
activeadmin-select2 (0.1.7)
activeadmin
jquery-rails
select2-rails
GIT
remote: git://github.com/tim-vandecasteele/grape-swagger.git
revision: e1f5eaa637d19c77b12ec0ae9cc5655f493c3576
branch: master
specs:
grape-swagger (0.10.5)
grape (>= 0.8.0)
grape-entity (< 0.5.0)
GIT
remote: git://github.com/wild5r/activeadmin_hstore_editor.git
revision: af694f8e329f72629576f1fb21d13d93e503d1df
branch: master
specs:
activeadmin_hstore_editor (0.0.5)
railties (>= 3.0, < 5.0)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.2.5.1)
actionpack (= 4.2.5.1)
actionview (= 4.2.5.1)
activejob (= 4.2.5.1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.5.1)
actionview (= 4.2.5.1)
activesupport (= 4.2.5.1)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.5.1)
activesupport (= 4.2.5.1)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
active_model_serializers (0.9.4)
activemodel (>= 3.2)
activeadmin (1.0.0.pre2)
arbre (~> 1.0, >= 1.0.2)
bourbon
coffee-rails
formtastic (~> 3.1)
formtastic_i18n
inherited_resources (~> 1.6)
jquery-rails
jquery-ui-rails
kaminari (~> 0.15)
rails (>= 3.2, < 5.0)
ransack (~> 1.3)
sass-rails
activejob (4.2.5.1)
activesupport (= 4.2.5.1)
globalid (>= 0.3.0)
activemodel (4.2.5.1)
activesupport (= 4.2.5.1)
builder (~> 3.1)
activerecord (4.2.5.1)
activemodel (= 4.2.5.1)
activesupport (= 4.2.5.1)
arel (~> 6.0)
activerecord-import (0.10.0)
activerecord (>= 3.0)
activerecord-jdbc-adapter (1.3.19)
activerecord (>= 2.2)
activerecord-jdbcpostgresql-adapter (1.3.19)
activerecord-jdbc-adapter (~> 1.3.19)
jdbc-postgres (>= 9.1)
activerecord-nulldb-adapter (0.3.2)
activerecord (>= 2.0.0)
activesupport (4.2.5.1)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.4.0)
annotate (2.7.0)
activerecord (>= 3.2, < 6.0)
rake (~> 10.4)
arbre (1.0.3)
activesupport (>= 3.0.0)
arel (6.0.3)
ast (2.2.0)
attr_encrypted (1.3.5)
encryptor (~> 1.3.0)
awesome_print (1.6.1)
aws-sdk (2.2.14)
aws-sdk-resources (= 2.2.14)
aws-sdk-core (2.2.14)
jmespath (~> 1.0)
aws-sdk-resources (2.2.14)
aws-sdk-core (= 2.2.14)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
bcrypt (3.1.10-java)
binding_of_caller (0.7.3.pre1)
debug_inspector (>= 0.0.1)
bourbon (4.2.6)
sass (~> 3.4)
thor (~> 0.19)
brakeman (3.1.5)
erubis (~> 2.6)
fastercsv (~> 1.5)
haml (>= 3.0, < 5.0)
highline (>= 1.6.20, < 2.0)
multi_json (~> 1.2)
ruby2ruby (>= 2.1.1, < 2.3.0)
ruby_parser (~> 3.7.0)
safe_yaml (>= 1.0)
sass (~> 3.0)
slim (>= 1.3.6, < 4.0)
terminal-table (~> 1.4)
builder (3.2.2)
cancancan (1.13.1)
capybara (2.6.2)
addressable
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
carmen (1.0.2)
activesupport (>= 3.0.0)
climate_control (0.0.3)
activesupport (>= 3.0)
cliver (0.3.2)
cocaine (0.5.8)
climate_control (>= 0.0.3, < 1.0)
codacy-coverage (0.3.1)
rest-client (~> 1.8)
simplecov (>= 0.10.0)
coderay (1.1.0)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
coffee-rails (4.1.1)
coffee-script (>= 2.2.0)
railties (>= 4.0.0, < 5.1.x)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.10.0)
colorize (0.7.7)
concurrent-ruby (1.0.0-java)
connection_pool (2.2.0)
database_cleaner (1.5.1)
debug_inspector (0.0.2)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (3.5.5)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
responders
thread_safe (~> 0.1)
warden (~> 1.2.3)
devise-async (0.10.1)
devise (~> 3.2)
diff-lcs (1.2.5)
docile (1.1.5)
domain_name (0.5.20160128)
unf (>= 0.0.5, < 1.0.0)
email_validator (1.6.0)
activemodel
encryptor (1.3.0)
equalizer (0.0.11)
erubis (2.7.0)
execjs (2.6.0)
factory_girl (4.5.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.5.0)
factory_girl (~> 4.5.0)
railties (>= 3.0.0)
faker (1.6.1)
i18n (~> 0.5)
fast_gettext (1.0.0)
fastercsv (1.5.5)
ffi (1.9.10-java)
formatador (0.2.5)
formtastic (3.1.3)
actionpack (>= 3.2.13)
formtastic_i18n (0.5.0)
fuubar (2.0.0)
rspec (~> 3.0)
ruby-progressbar (~> 1.4)
gem_reloader (0.0.2)
gettext (3.2.1)
locale (>= 2.0.5)
text (>= 1.3.0)
gettext_i18n_rails (1.4.0)
fast_gettext (>= 0.9.0)
globalid (0.3.6)
activesupport (>= 4.1.0)
grape (0.14.0)
activesupport
builder
hashie (>= 2.1.0)
multi_json (>= 1.3.2)
multi_xml (>= 0.5.2)
rack (>= 1.3.0)
rack-accept
rack-mount
virtus (>= 1.0.0)
grape-entity (0.4.8)
activesupport
multi_json (>= 1.3.2)
grape-rails-cache (0.1.2)
activesupport
grape
grape-swagger-rails (0.1.0)
grape-swagger (>= 0.7.2)
railties (>= 3.2.12)
grape_devise_token_auth (0.1.3)
devise (~> 3.3)
devise_token_auth (~> 0.1.32.beta9)
grape (> 0.9.0)
gson (0.6.1-java)
guard (2.13.0)
formatador (>= 0.2.4)
listen (>= 2.7, <= 4.0)
lumberjack (~> 1.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-rspec (4.6.4)
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
haml (4.0.7)
tilt
has_scope (0.6.0)
actionpack (>= 3.2, < 5)
activesupport (>= 3.2, < 5)
hashie (3.4.3)
hashie-forbidden_attributes (0.1.1)
hashie (>= 3.0)
highline (1.7.8)
hstore_accessor (1.0.3)
activerecord (>= 4.0.0)
http-cookie (1.0.2)
domain_name (~> 0.5)
i18n (0.7.0)
ice_nine (0.11.2)
inherited_resources (1.6.0)
actionpack (>= 3.2, < 5)
has_scope (~> 0.6.0.rc)
railties (>= 3.2, < 5)
responders
intercom (3.3.0)
json (~> 1.8)
jdbc-postgres (9.4.1204)
jmespath (1.1.3)
jquery-rails (4.1.0)
rails-dom-testing (~> 1.0)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
jquery-ui-rails (5.0.5)
railties (>= 3.2.16)
json (1.8.3-java)
kaminari (0.16.3)
actionpack (>= 3.0.0)
activesupport (>= 3.0.0)
le (2.6.2)
listen (3.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
locale (2.1.2)
loofah (2.0.3)
nokogiri (>= 1.5.9)
lumberjack (1.0.10)
mail (2.6.3)
mime-types (>= 1.16, < 3)
method_source (0.8.2)
mime-types (2.99)
mimemagic (0.3.0)
minitest (5.8.4)
multi_json (1.11.2)
multi_xml (0.5.5)
nenv (0.2.0)
nested-hstore (0.1.2)
activerecord
activesupport
netrc (0.11.0)
newrelic_rpm (3.14.2.312)
nokogiri (1.6.7.2-java)
notiffany (0.0.8)
nenv (~> 0.1)
shellany (~> 0.0)
omniauth (1.3.1)
hashie (>= 1.2, < 4)
rack (>= 1.0, < 3)
orm_adapter (0.5.0)
paper_trail (4.1.0)
activerecord (>= 3.0, < 6.0)
activesupport (>= 3.0, < 6.0)
request_store (~> 1.1)
paperclip (4.3.3)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
cocaine (~> 0.5.5)
mime-types
mimemagic (= 0.3.0)
paranoia (2.1.5)
activerecord (~> 4.0)
paranoia_uniqueness_validator (1.1.0)
activerecord (>= 4.0.0)
parser (2.3.0.2)
ast (~> 2.2)
pdf-forms (0.6.1)
cliver (~> 0.3.2)
safe_shell (~> 1.0)
pg_array_parser (0.0.9-java)
phony (2.15.15)
phony_rails (0.12.11)
activesupport (>= 3.0)
phony (~> 2.12)
polyamorous (1.3.0)
activerecord (>= 3.0)
postgres_ext (2.4.1)
activerecord (>= 4.0.0)
arel (>= 4.0.1)
pg_array_parser (~> 0.0.9)
powerpack (0.1.1)
pry (0.10.3-java)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
spoon (~> 0.0)
pry-nav (0.2.4)
pry (>= 0.9.10, < 0.11.0)
pry-rails (0.3.4)
pry (>= 0.9.10)
puma (2.16.0-java)
rack (1.6.4)
rack-accept (0.4.5)
rack (>= 0.4)
rack-cors (0.4.0)
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-protection (1.5.3)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.5.1)
actionmailer (= 4.2.5.1)
actionpack (= 4.2.5.1)
actionview (= 4.2.5.1)
activejob (= 4.2.5.1)
activemodel (= 4.2.5.1)
activerecord (= 4.2.5.1)
activesupport (= 4.2.5.1)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.5.1)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.7)
activesupport (>= 4.2.0.beta, < 5.0)
nokogiri (~> 1.6.0)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.3)
loofah (~> 2.0)
rails_serve_static_assets (0.0.4)
railties (4.2.5.1)
actionpack (= 4.2.5.1)
activesupport (= 4.2.5.1)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rainbow (2.1.0)
rake (10.5.0)
ransack (1.7.0)
actionpack (>= 3.0)
activerecord (>= 3.0)
activesupport (>= 3.0)
i18n
polyamorous (~> 1.2)
rb-fsevent (0.9.7)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rchardet (1.6.1)
rdoc (4.2.1)
json (~> 1.4)
redis (3.2.2)
redis-actionpack (4.0.1)
actionpack (~> 4)
redis-rack (~> 1.5.0)
redis-store (~> 1.1.0)
redis-activesupport (4.1.5)
activesupport (>= 3, < 5)
redis-store (~> 1.1.0)
redis-rack (1.5.0)
rack (~> 1.5)
redis-store (~> 1.1.0)
redis-rails (4.0.0)
redis-actionpack (~> 4)
redis-activesupport (~> 4)
redis-store (~> 1.1.0)
redis-store (1.1.7)
redis (>= 2.2)
request_store (1.3.0)
responders (2.1.1)
railties (>= 4.2.0, < 5.1)
rest-client (1.8.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-activejob (0.6.1)
activejob (>= 4.2)
rspec-mocks
rspec-core (3.4.2)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-rails (3.4.1)
actionpack (>= 3.0, < 4.3)
activesupport (>= 3.0, < 4.3)
railties (>= 3.0, < 4.3)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)
rubocop (0.36.0)
parser (>= 2.3.0.0, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.7)
ruby-progressbar (1.7.5)
ruby2ruby (2.2.0)
ruby_parser (~> 3.1)
sexp_processor (~> 4.0)
rubyXL (3.3.15)
nokogiri (>= 1.4.4)
rubyzip (>= 1.1.6)
ruby_parser (3.7.3)
sexp_processor (~> 4.1)
rubyzip (1.1.7)
safe_shell (1.0.3)
safe_yaml (1.0.4)
sass (3.4.21)
sass-rails (5.0.4)
railties (>= 4.0.0, < 5.0)
sass (~> 3.1)
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
sdoc (0.4.1)
json (~> 1.7, >= 1.7.7)
rdoc (~> 4.0)
select2-rails (4.0.1)
thor (~> 0.14)
sexp_processor (4.6.1)
shellany (0.0.1)
sidekiq (4.1.0)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
redis (~> 3.2, >= 3.2.1)
simplecov (0.11.1)
docile (~> 1.1.0)
json (~> 1.8)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
sinatra (1.4.7)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
slim (3.0.6)
temple (~> 0.7.3)
tilt (>= 1.3.3, < 2.1)
slop (3.6.0)
spoon (0.0.4)
ffi
spork (0.9.2)
sprockets (3.5.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.0.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
temple (0.7.6)
terminal-table (1.5.2)
text (1.3.1)
therubyrhino (2.0.4)
therubyrhino_jar (>= 1.7.3)
therubyrhino_jar (1.7.6)
thor (0.19.1)
thread_safe (0.3.5-java)
tilt (2.0.2)
turbolinks (2.5.3)
coffee-rails
tzinfo (1.2.2)
thread_safe (~> 0.1)
uglifier (2.7.2)
execjs (>= 0.3.0)
json (>= 1.8.0)
unf (0.1.4-java)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
wannabe_bool (0.5.0)
warden (1.2.6)
rack (>= 1.0)
with_advisory_lock (3.0.0)
activerecord (>= 3.2)
thread_safe
xpath (2.0.0)
nokogiri (~> 1.3)
zxcvbn-js (4.2.0.1)
execjs
PLATFORMS
java
DEPENDENCIES
active_admin_import!
active_model_serializers
activeadmin (~> 1.0.0.pre2)
activeadmin-select2!
activeadmin_hstore_editor!
activerecord-jdbcpostgresql-adapter
activerecord-nulldb-adapter
annotate
attr_encrypted
awesome_print
aws-sdk (~> 2)
binding_of_caller (~> 0.7.3.pre1)
brakeman
cancancan (~> 1.10)
capybara
carmen
codacy-coverage
colorize
database_cleaner
devise
devise-async
devise_token_auth!
devise_zxcvbn!
email_validator
encryptor (< 2.0.0)
factory_girl_rails
faker
fuubar
gem_reloader
gettext (>= 3.0.2)
gettext_i18n_rails
grape
grape-entity
grape-rails-cache
grape-swagger!
grape-swagger-rails
grape_devise_token_auth
gson
guard
guard-rspec
hashie-forbidden_attributes
hstore_accessor
intercom
jquery-rails
le
mimemagic
nested-hstore
newrelic_rpm
omniauth
paper_trail
paperclip
paranoia (~> 2.0)
paranoia_uniqueness_validator
pdf-forms
pg
phony_rails
postgres_ext
pry-nav
pry-rails
puma
rack-cors
rails (= 4.2.5.1)
rails_serve_static_assets
redis-rails
rspec
rspec-activejob
rspec-rails (~> 3.0)
rubocop
rubyXL
safe_shell
sdoc (~> 0.4.0)
security_identifiers!
select2-rails
sidekiq (< 5)
sinatra
spork
therubyrhino
turbolinks
uglifier
wannabe_bool
with_advisory_lock
BUNDLED WITH
1.11.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment