Skip to content

Instantly share code, notes, and snippets.

@imWildCat
Last active August 29, 2015 14:07
Show Gist options
  • Save imWildCat/4e240483ac8dbe94a2e3 to your computer and use it in GitHub Desktop.
Save imWildCat/4e240483ac8dbe94a2e3 to your computer and use it in GitHub Desktop.
Gemfile provided by Good man~
source 'https://rubygems.org'
gem 'rails', '4.2.0.beta2'
gem 'rails-api'
gem 'spring', :group => :development
gem 'pg'
gem 'active_model_serializers', '~> 0.9.0'
# Use puma as the app server
gem 'puma'
# Use for phone number
gem 'global_phone'
# Upload and Image Processing
gem 'carrierwave'
gem 'fog', '~> 1.23.0'
gem 'mini_magick'
gem 'newrelic_rpm'
# For like and vote
gem 'acts_as_votable', '~> 0.10.0'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.5'
# SMS Notification
gem 'twilio-ruby'
# Sidekiq as Active Job Backend
gem 'sidekiq'
# For APNS
gem 'grocer'
# Schedule
gem 'whenever', require: false
group :development, :test do
gem 'pry-rails'
gem 'annotate', '~> 2.6.5'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rbenv', '~> 2.0.2'
gem 'capistrano-rails', '~> 1.1.2'
gem 'capistrano-bundler', '~> 1.1.3'
gem 'capistrano3-puma', '~> 0.7.0'
gem 'capistrano-sidekiq' , github: 'seuros/capistrano-sidekiq'
end
# To use Jbuilder templates for JSON
# gem 'jbuilder'
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.5'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# 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', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
gem 'slim-rails'
gem 'bootstrap-sass', '~> 3.2.0.1'
gem 'font-awesome-sass', '~> 4.1.0'
gem 'autoprefixer-rails'
# Paginator
gem 'kaminari'
# Attachment and uploads
gem 'carrierwave'
gem 'globalize', '~> 4.0.2'
gem 'globalize-accessors'
gem 'i18n-tasks', '~> 0.7.4'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
gem 'puma'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
group :development, :test do
gem 'spring-commands-rspec'
gem 'rspec-rails', '~> 3.0.2'
gem 'rspec', '~> 3.0.0'
gem 'factory_girl_rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'launchy', '~> 2.4.2'
gem 'letter_opener'
gem 'guard-rspec', '~> 4.3.1', require: false
gem 'guard-livereload', require: false
gem 'pry-rails'
gem 'annotate', '~> 2.6.5'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rbenv', '~> 2.0.2'
gem 'capistrano-rails', '~> 1.1.1'
gem 'capistrano-bundler', '~> 1.1.3'
gem 'capistrano3-puma', '~> 0.7.0'
end
# From: https://bitbucket.org/chunlea/rails-starter/src/5e0da73641d3ca2e6032f1c5ebd9ea7d682d6f07/Gemfile?at=init
source 'https://rubygems.org'
ruby "2.1.1"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.0'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# 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', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
gem 'foreman', group: :development
# 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
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'devise'
# Attachment and uploads
gem 'carrierwave'
# API
gem 'grape'
# UI with Bootstrap, Simple_form and Font-awesome
gem 'bootstrap-sass', '~> 3.1.1'
gem 'font-awesome-sass'
gem 'simple_form', '~> 3.1.0.rc1'
gem 'momentjs-rails', '~> 2.5.0'
gem 'bootstrap3-datetimepicker-rails', '~> 3.0.0'
gem 'rails_12factor', group: :production
group :development, :test do
gem 'spring-commands-rspec'
gem 'rspec-rails', '~> 3.0.0.beta2'
gem 'rspec', '~> 3.0.0.beta2'
gem 'factory_girl_rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'launchy', '~> 2.4.2'
gem 'letter_opener'
gem 'guard-rspec', '~> 4.2.8', require: false
gem 'guard-livereload', require: false
gem 'pry-rails'
end
Another source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.4'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# 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', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
gem 'foreman', group: :development
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
gem 'puma'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'devise'
# Attachment and uploads
gem 'carrierwave'
gem 'smarter_csv'
gem 'fog', '~> 1.23.0'
# API
gem 'grape'
gem 'grape-entity'
gem 'grape-kaminari'
# UI with Bootstrap, Simple_form and Font-awesome
gem 'bootstrap-sass', '~> 3.2.0.1'
gem 'font-awesome-sass', '~> 4.1.0'
gem 'simple_form', '~> 3.1.0.rc2'
gem 'momentjs-rails'
gem 'bootstrap3-datetimepicker-rails', '~> 3.0.2.1'
gem 'fancybox2-rails', '~> 0.2.8'
gem 'wice_grid', '~> 3.4.3'
gem 'kaminari'
gem 'rails_12factor', group: :production
group :development, :test do
gem 'spring-commands-rspec'
gem 'rspec-rails', '~> 3.0.2'
gem 'rspec', '~> 3.0.0'
gem 'factory_girl_rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'launchy', '~> 2.4.2'
gem 'letter_opener'
gem 'guard-rspec', '~> 4.3.1', require: false
gem 'guard-livereload', require: false
gem 'pry-rails'
gem 'annotate', '~> 2.6.5'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rbenv', '~> 2.0.2'
gem 'capistrano-rails', '~> 1.1.1'
gem 'capistrano-bundler', '~> 1.1.3'
gem 'capistrano3-puma', '~> 0.7.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment