Last active
August 29, 2015 14:22
-
-
Save colmtuite/70a1976f7441bdf9d75c to your computer and use it in GitHub Desktop.
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
colmtuite 468 0.0 0.1 849880 3000 ?? S Thu03am 0:28.31 /Applications/Utilities/Adobe Creative Cloud/HEX/Adobe CEF Helper.app/Contents/MacOS/Adobe CEF Helper --type=renderer --no-sandbox --user-agent=Mozilla/5.0 (Macintosh) AppleWebKit/537.36 (KHTML, like Gecko) Safari/537.36 CreativeCloud/1.9.1.474 --lang=en-US --lang=en-US --log-severity=disable --disable-accelerated-video-decode --channel=371.0.66053191 | |
source 'https://rubygems.org' | |
# Needed by heroku | |
ruby '2.2.0' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.0' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 4.0.0' | |
# Use Uglifier as compressor for JavaScript assets | |
gem 'uglifier', '>= 1.3.0' | |
# Use CoffeeScript for .js.coffee assets and views | |
gem 'coffee-rails', '~> 4.0.0' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
# Turbolinks makes following links in your web application faster. | |
# Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 1.2' | |
gem 'thin' | |
gem "sorcery" | |
# Backwards compatibility for the rubyzip gem. | |
# http://stackoverflow.com/q/12079291/574190 | |
gem 'zip-zip' | |
# Heroku production settings | |
group :production do | |
gem 'pg' | |
gem 'rails_12factor' | |
end | |
group :doc do | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', require: false | |
end | |
# Development settings | |
group :development do | |
gem 'mailcatcher' | |
end | |
# Development and test settings | |
group :development, :test do | |
gem 'rspec-rails' | |
gem 'sqlite3' | |
gem 'foreman' | |
gem 'quiet_assets' | |
end | |
group :test do | |
gem 'capybara-webkit' | |
gem 'launchy' | |
gem 'factory_girl_rails', require: false | |
gem 'database_cleaner' | |
gem 'capybara-email' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
source 'https://rubygems.org'
Needed by heroku
ruby '2.2.0'
Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
Use jquery as the JavaScript library
gem 'jquery-rails'
Turbolinks makes following links in your web application faster.
Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'thin'
gem "sorcery"
Backwards compatibility for the rubyzip gem.
http://stackoverflow.com/q/12079291/574190
gem 'zip-zip'
Heroku production settings
group :production do
gem 'pg'
gem 'rails_12factor'
end
group :doc do
bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
Development settings
group :development do
gem 'mailcatcher'
end
Development and test settings
group :development, :test do
gem 'rspec-rails'
gem 'sqlite3'
gem 'foreman'
gem 'quiet_assets'
end
group :test do
gem 'capybara-webkit'
gem 'launchy'
gem 'factory_girl_rails', require: false
gem 'database_cleaner'
gem 'capybara-email'
end