f5bf5ebb82
* Replace browserify with webpack * Add react-intl-translations-manager * Do not minify in development, add offline-plugin for ServiceWorker background cache updates * Adjust tests and dependencies * Fix production deployments * Fix tests * More optimizations * Improve travis cache for npm stuff * Re-run travis * Add back support for custom.scss as before * Remove offline-plugin and babili * Fix issue with Immutable.List().unshift(...values) not working as expected * Make travis load schema instead of running all migrations in sequence * Fix missing React import in WarningContainer. Optimize rendering performance by using ImmutablePureComponent instead of React.PureComponent. ImmutablePureComponent uses Immutable.is() to compare props. Replace dynamic callback bindings in <UI /> * Add react definitions to places that use JSX * Add Procfile.dev for running rails, webpack and streaming API at the same time
102 lines
1.9 KiB
Ruby
102 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
ruby '>= 2.3.0', '< 2.5.0'
|
|
|
|
gem 'pkg-config'
|
|
|
|
gem 'puma'
|
|
gem 'rails', '~> 5.0.2'
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
gem 'hamlit-rails'
|
|
gem 'pg'
|
|
gem 'pghero'
|
|
gem 'dotenv-rails'
|
|
gem 'best_in_place', '~> 3.0.1'
|
|
|
|
gem 'aws-sdk', '>= 2.0'
|
|
gem 'paperclip', '~> 5.1'
|
|
gem 'paperclip-av-transcoder'
|
|
|
|
gem 'addressable'
|
|
gem 'devise'
|
|
gem 'devise-two-factor'
|
|
gem 'doorkeeper'
|
|
gem 'fast_blank'
|
|
gem 'goldfinger'
|
|
gem 'hiredis'
|
|
gem 'htmlentities'
|
|
gem 'http'
|
|
gem 'http_accept_language'
|
|
gem 'httplog'
|
|
gem 'kaminari'
|
|
gem 'link_header'
|
|
gem 'local_time'
|
|
gem 'nokogiri'
|
|
gem 'oj'
|
|
gem 'ostatus2', '~> 1.1'
|
|
gem 'ox'
|
|
gem 'rabl'
|
|
gem 'rack-attack'
|
|
gem 'rack-cors', require: 'rack/cors'
|
|
gem 'rack-timeout'
|
|
gem 'rails-i18n'
|
|
gem 'rails-settings-cached'
|
|
gem 'redis', '~>3.2', require: ['redis', 'redis/connection/hiredis']
|
|
gem 'rqrcode'
|
|
gem 'ruby-oembed', require: 'oembed'
|
|
gem 'sanitize'
|
|
gem 'sidekiq'
|
|
gem 'sidekiq-unique-jobs'
|
|
gem 'simple-navigation'
|
|
gem 'simple_form'
|
|
gem 'sprockets-rails', require: 'sprockets/railtie'
|
|
gem 'statsd-instrument'
|
|
gem 'twitter-text'
|
|
gem 'tzinfo-data'
|
|
gem 'webpacker', '~>1.2'
|
|
gem 'whatlanguage'
|
|
|
|
# For some reason the view specs start failing without this
|
|
gem 'react-rails'
|
|
|
|
group :development, :test do
|
|
gem 'fabrication'
|
|
gem 'fuubar'
|
|
gem 'i18n-tasks', '~> 0.9.6'
|
|
gem 'pry-rails'
|
|
gem 'rspec-rails'
|
|
end
|
|
|
|
group :test do
|
|
gem 'capybara'
|
|
gem 'faker'
|
|
gem 'microformats2'
|
|
gem 'rails-controller-testing'
|
|
gem 'rspec-sidekiq'
|
|
gem 'simplecov', require: false
|
|
gem 'webmock'
|
|
end
|
|
|
|
group :development do
|
|
gem 'active_record_query_trace'
|
|
gem 'annotate'
|
|
gem 'better_errors'
|
|
gem 'binding_of_caller'
|
|
gem 'bullet'
|
|
gem 'letter_opener'
|
|
gem 'letter_opener_web'
|
|
gem 'rubocop', '0.46.0', require: false
|
|
|
|
gem 'capistrano', '3.8.0'
|
|
gem 'capistrano-rails'
|
|
gem 'capistrano-rbenv'
|
|
gem 'capistrano-yarn'
|
|
end
|
|
|
|
group :production do
|
|
gem 'lograge'
|
|
gem 'rails_12factor'
|
|
gem 'redis-rails'
|
|
end
|