Created
November 22, 2017 14:47
-
-
Save mickro/060f3b1232d77fdd114f5321f6089aa4 to your computer and use it in GitHub Desktop.
gem file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| ruby '>= 2.4.1' | |
| gem 'rails', '~> 5.0.5' | |
| gem 'pg', '~> 0.19.0' | |
| gem 'config', '~> 1.3.0' | |
| gem 'kaminari', '~> 0.17.0' | |
| # TODO slim-rails bug in testing with 3.1.2 | |
| gem 'paperclip', '~> 4.3.7' | |
| gem 'bootstrap', '~> 4.0.0.alpha6' | |
| gem 'font-awesome-rails' | |
| gem 'slim-rails', '3.1.1' | |
| gem 'browserify-rails', '~> 4.1.0' | |
| gem 'momentjs-rails', '~> 2.11.0' | |
| gem 'fullcalendar-rails', '~> 2.6.1.0' | |
| gem 'ckeditor', '~> 4.1' | |
| gem 'lazy_high_charts', '~> 1.5.5' | |
| gem 'cocoon', '~> 1.2.7' | |
| gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37' | |
| gem 'devise', '~> 4.3.0' | |
| gem 'bourbon', '~> 4.3.3' | |
| gem 'autoprefixer-rails' | |
| # gem 'peerjs-rails', '~> 0.0.1' | |
| gem 'active_model_serializers', '~> 0.10.3' | |
| gem 'jwt', '~>1.5.6' | |
| gem 'globalize', github: 'globalize/globalize' | |
| gem 'solidus', '~> 2.1.0' | |
| gem 'solidus_auth_devise' | |
| gem 'solidus_i18n', github: 'solidusio-contrib/solidus_i18n', branch: 'master' | |
| gem 'solidus_globalize', github: 'solidusio-contrib/solidus_globalize', branch: 'master' | |
| # gem 'solidus_editor', github: 'solidusio-contrib/solidus_editor', branch: 'master' | |
| gem 'solidus_related_products', github: 'solidusio-contrib/solidus_related_products', branch: 'master' | |
| gem 'solidus_trackers' | |
| # Use Puma as the app server | |
| gem 'puma', '~> 3.0' | |
| # Use SCSS for stylesheets | |
| gem 'sass-rails', '~> 5.0' | |
| # Use Uglifier as compressor for JavaScript assets | |
| gem 'uglifier', '>= 1.3.0' | |
| # Use CoffeeScript for .coffee assets and views | |
| gem 'coffee-rails', '~> 4.2' | |
| # See https://github.com/rails/execjs#readme for more supported runtimes | |
| gem 'therubyracer', platforms: :ruby | |
| # Use jquery as the JavaScript library | |
| gem 'jquery-rails' | |
| # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | |
| gem 'turbolinks', '~> 5' | |
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
| gem 'jbuilder', '~> 2.6.0' | |
| # Use Redis adapter to run Action Cable in production | |
| # gem 'redis', '~> 3.0' | |
| # Use ActiveModel has_secure_password | |
| # gem 'bcrypt', '~> 3.1.7' | |
| # gem "gretel", :git => 'https://github.com/mickro/gretel.git', :branch => 'support-bootstrap4-alpha' | |
| gem "gretel", :git => 'https://github.com/mickro/gretel.git' | |
| # Use Capistrano for deployment | |
| # gem 'capistrano-rails', group: :development | |
| # gem 'ak_core', :path => '../ak_core/current' | |
| gem 'ak_core', :path => 'lib' | |
| group :development, :test do | |
| gem 'byebug', '~> 9.0.6' | |
| gem 'rspec-mocks', '~> 3.5.0' | |
| gem 'spring-commands-rspec', '~> 1.0.4' | |
| gem 'pry' | |
| gem 'pry-byebug' | |
| gem 'pry-rails' | |
| # gem 'pry-nav' | |
| # gem 'pry-stack_explorer' | |
| gem 'rubocop', '~> 0.44.1' | |
| gem 'capybara', '~> 2.10.1' | |
| gem 'capybara-screenshot', '~> 1.0.14' | |
| gem 'database_cleaner', '~> 1.3.0' | |
| gem 'factory_girl', '~> 4.7.0' | |
| gem 'ffaker', '~> 2.2.0' | |
| gem 'rspec-rails', '~> 3.5.2' | |
| gem 'guard', '~> 2.14.1' | |
| gem 'guard-rspec', '~> 4.7.3' | |
| gem 'guard-bundler', '~> 2.1.0' | |
| gem 'selenium-webdriver', '~> 2.53.0' | |
| gem 'vcr' , '~> 3.0.3' | |
| gem 'poltergeist', '~> 1.11.0' | |
| gem 'better_errors', '~> 2.1.1' | |
| end | |
| group :test do | |
| gem 'webmock' , '~> 3.1.0' | |
| gem 'fake_stripe' | |
| end | |
| group :development do | |
| # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | |
| gem 'web-console', '>= 3.3.0' | |
| gem 'listen', '~> 3.0.5' | |
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
| gem 'spring' | |
| gem 'spring-watcher-listen', '~> 2.0.0' | |
| end | |
| group :profile do | |
| gem 'ruby-prof' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment