Last active
August 29, 2015 14:01
-
-
Save ccmcbeck/9b7955c000bc05db3dc7 to your computer and use it in GitHub Desktop.
This file contains 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' | |
# 2014-01-20 - CMB - bumped to ruby 2.1.0 | |
# 2014-03-08 - CMB - bumped to ruby 2.1.1 | |
ruby '2.1.1' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
# 2014-02-03 - CMB - was gem 'rails', '4.0.2' | |
# 2014-03-07 - CMB - was gem 'rails', '4.1.0.beta1' | |
# 2014-04-08 - CMB - was gem 'rails', '4.1.0.rc1' | |
# 2014-05-12 - CMB - was gem 'rails', '4.1.0' | |
gem 'rails', '4.1.1' | |
# DATABASE ADAPTORS | |
# 2014-04-15 - CMB - added | |
# must install 'brew postgress' first, then follow brew caveats for installing gem | |
gem 'pg', '0.15.1', group: [:development, :production] | |
# 2014-04-08 - CMB - was gem 'sqlite3', '1.3.8' | |
gem 'sqlite3', '1.3.9', group: [:development, :test] | |
# 2014-02-22 - CMB - added | |
gem 'mysql2', '0.3.15', group: [:devlopment] | |
group :development, :test do | |
# 2013-12-05 - CMB - replace Test:Unit with Rspec | |
# 2014-04-08 - CMB - was gem 'rspec-rails', '2.14.1' | |
gem 'rspec-rails', '2.14.2' | |
# 2014-01-02 - CMB - added to automate rspec with guard | |
# 2014-04-08 - CMB - was gem 'guard-rspec', '4.2.3' | |
gem 'guard-rspec', '4.2.8' | |
# 2013-12-23 - CMB - added for JS testing -- https://github.com/modeset/teaspoon | |
# 2014-04-08 - CMB - was gem 'teaspoon', '0.7.7' | |
# 2014-05-27 - CMB - was gem 'teaspoon', '0.7.9' | |
gem 'teaspoon', '0.8.0' | |
gem 'guard-teaspoon', '0.0.4' | |
# 2013-12-21 - CMB - to use save_and_open_page in request specs | |
gem 'launchy', '2.4.2' | |
# 2013-12-23 - CMB - added for headless JS testing using phantomjs and capybara | |
gem 'poltergeist', '1.5.0' | |
# 2013-12-25 - CMB - more robust way to clean db between specs | |
# 2014-05-27 - CMB - was gem 'database_cleaner', '1.2.0' | |
gem 'database_cleaner', '1.3.0' | |
# 2014-01-01 - CMB - ruby 2.0 debugger - https://github.com/deivid-rodriguez/byebug | |
# 2014-04-08 - CMB - was gem 'byebug', '2.5.0' | |
# 2014-05-27 - CMB - was gem 'byebug', '2.7.0' | |
gem 'byebug', '3.1.2' | |
# 2014-01-02 - CMB - enahance the IRB / rails c experience | |
gem 'hirb', '0.7.1' # better printing of tables | |
gem 'awesome_print', '1.2.0' # better printing of objects and hashes | |
gem 'quiet_assets', '1.0.2' # eliminate asset pipeline messages in rails log | |
gem 'thin', '1.6.2' # quieter and better than webrick | |
# 2014-02-03 - CMB - moved to development for using in rails console | |
# 2013-12-16 - CMB - testing factories | |
# 2014-04-08 - CMB - was gem 'factory_girl_rails', '4.3.0' | |
gem 'factory_girl_rails', '4.4.1' | |
# 2014-03-11 - CMB - added to make pow easier to use | |
gem 'powder', '0.2.1' | |
# 2014-04-08 - CMB - locally view the wiki | |
gem 'gollum', '3.0.0' | |
end | |
# 2014-04-22 - CMB - per http://railscasts.com/episodes/402-better-errors-railspanel | |
group :development do | |
gem 'better_errors', '1.1.0' | |
gem 'binding_of_caller', '0.7.2' | |
gem 'meta_request', '0.3.0' | |
end | |
# 2013-12-03 - CMB - for Heroku for RAILS_ENV=production | |
group :production do | |
gem 'rails_12factor', '0.0.2' # used to server static assets on Heroku | |
end | |
group :test do | |
# 2013-12-05 - CMB - testing components for Rspec | |
# 2014-04-08 - CMB - was gem 'selenium-webdriver', '2.35.1' | |
# 2014-05-26 - CMB - was gem 'selenium-webdriver', '2.41.0' | |
gem 'selenium-webdriver', '2.42.0' | |
# 2014-04-08 - CMB - was gem 'capybara', '2.1.0' | |
gem 'capybara', '2.2.1' | |
# 2014-03-19 - CMB - added for time freezing | |
gem 'timecop', '0.7.1' | |
end | |
group :doc do | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', require: false | |
end | |
# 2014-02-01 - CMB - memcached gems | |
gem 'rack-cache', '1.2' | |
gem 'dalli', '2.7.0' | |
# 2014-04-02 - CMB - required by heroku for memcached | |
gem 'memcachier', '0.0.2' | |
# Using LESS for stylesheets via bootstrap | |
# 2014-04-08 - CMB - was gem 'less-rails-bootstrap', '3.0.6' | |
gem 'less-rails-bootstrap', '3.1.1.1' | |
# 2014-01-27 - CMB - instead of bootstrap glyphs | |
gem 'font-awesome-less', '4.0.2' | |
# 2013-12-16 - CMB - form builder for bootstrap 3 | |
# 2014-02-03 - CMB - was gem 'bootstrap_form', '2.0.0' | |
gem 'bootstrap_form', '2.1.1' | |
# 2014-04-17 - CMB - added | |
gem 'nested_form', '0.3.2' | |
# Use SCSS for stylesheets | |
# 2013-12-03 - CMB - was gem 'sass-rails', '~> 4.0.0' | |
# 2013-12-15 - CMB - disabled sass so rails generators would use less | |
# see https://github.com/metaskills/less-rails/issues/42 | |
# gem 'sass-rails', '4.0.1' | |
# 2013-12-08 - CMB - added for less-rails-bootstrap generators to run | |
gem 'therubyracer', '0.12.0' | |
# 2013-12-16 - CMB - added for password hashing per Hartl 6.3.1 | |
# 2014-04-08 - CMB - was gem 'bcrypt-ruby', '3.1.2' | |
gem 'bcrypt', '3.1.7' | |
# Use Uglifier as compressor for JavaScript assets | |
# 2013-12-03 - CMB - was gem 'uglifier', '>= 1.3.0' | |
# 2014-04-08 - CMB - was gem 'uglifier', '2.3.2' | |
gem 'uglifier', '2.5.0' | |
# Use CoffeeScript for .js.coffee assets and views | |
# 2013-12-03 - CMB - was gem 'coffee-rails', '~> 4.0.0' | |
gem 'coffee-rails', '4.0.1' | |
# Use jquery as the JavaScript library | |
# 2013-12-03 - CMB - was gem 'jquery-rails' | |
# 2014-04-08 - CMB - was gem 'jquery-rails', '3.0.4' | |
gem 'jquery-rails', '3.1.0' | |
# 2014-03-31 - CMB - added | |
gem 'backbone-on-rails', '1.1.1.0' | |
# 2014-05-13 - CMB - added | |
gem 'handlebars_assets', '0.15' | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
# 2013-12-05 - CMB - was gem 'turbolinks' | |
# 2014-04-08 - CMB - was gem 'turbolinks', '2.0.0' | |
gem 'turbolinks', '2.2.2' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
# 2013-12-05 - CMB - was gem 'jbuilder', '~> 1.2' | |
# 2014-04-08 - CMB - was gem 'jbuilder', '1.5.3' | |
gem 'jbuilder', '2.0.6' | |
# 2013-12-18 - CMB - added to generate fake data to populate database | |
# 2014-04-08 - CMB - was gem 'faker', '1.2.0' | |
gem 'faker', '1.3.0' | |
# 2013-12-19 - CMB - added for pagination | |
# 2014-01-23 - CMB - replaced with kaminari | |
# gem 'will_paginate', '3.0.5' | |
# gem 'bootstrap-will_paginate', '0.0.10' | |
gem 'kaminari', '0.15.1' | |
# 2013-12-19 - CMB - added for object oriented decorator pattern | |
gem 'draper', '1.3.0' | |
# 2013-12-21 - CMB - added for lots of rails internal message translations -- like validations | |
# 2014-04-08 - CMB - was gem 'rails-i18n', '4.0.1' | |
gem 'rails-i18n', '4.0.2' | |
# 2014-05-22 - CMB - https://github.com/fnando/i18n-js/tree/v3.0.0.rc5 | |
gem 'i18n-js', '3.0.0.rc5' | |
# gem 'i18n-js', :git => 'https://github.com/fnando/i18n-js.git', :branch => 'master' | |
# 2014-02-08 - CMB - added for link interpolation | |
# https://github.com/iGEL/it | |
gem 'it', '0.2.5' | |
# 2014-04-08 - CMB - parse markdown | |
gem 'redcarpet', '3.1.1' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment