atzorvas/ccradio

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'
 
gem 'rails', '4.2.4'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `dotenv-rails` should appear before `rails`.
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `coffee-rails` should appear before `uglifier`.
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
 
gem 'jquery-rails'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `jbuilder` should appear before `jquery-rails`.
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
 
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
 
# Use Unicorn as the app server
# gem 'unicorn'
 
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
 
gem 'turbograft'
 
group :development, :test do
gem 'pry-rails'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `pry-byebug` should appear before `pry-rails`.
gem 'pry-byebug'
gem 'web-console', '~> 2.0'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `spring` should appear before `web-console`.
gem 'spring'
end
 
group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'mocha'
gem 'vcr'
gem 'webmock'
end
 
group :prodution do
gem 'puma'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `foreman` should appear before `puma`.
gem 'foreman'
gem 'rails_12factor'
end
 
gem 'rails_best_practices', group: :development
 
gem 'slim-rails'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `bootstrap-sass` should appear before `slim-rails`.
gem 'bootstrap-sass'
gem 'font-awesome-sass'
gem 'nokogiri'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `devise` should appear before `nokogiri`.
gem 'devise'
gem 'sidekiq'
gem 'sinatra'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `sidekiq-scheduler` should appear before `sinatra`.
gem 'sidekiq-scheduler'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `devise-async` should appear before `sidekiq-scheduler`.
gem 'devise-async'
gem 'tubesock'
Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `omniauth-wordpress_hosted` should appear before `tubesock`.
Line is too long. [84/80]
gem 'omniauth-wordpress_hosted', github: 'atzorvas/omniauth-wordpress-oauth2-plugin'
 
source 'https://rails-assets.org' do
gem 'rails-assets-jplayer'
end