Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JigneshGohel-BoTreeConsulting/1b10977de58d09452e19 to your computer and use it in GitHub Desktop.
Save JigneshGohel-BoTreeConsulting/1b10977de58d09452e19 to your computer and use it in GitHub Desktop.
MyApp Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.16'
gem 'therubyracer', :platform => :ruby
gem 'rake', '10.0.3'

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails', '2.1.3'
gem 'jquery-ui-rails', '2.0.2'
gem 'jquery-raty-rails'
#gem 'jquery_datepicker'
gem "haml", "~> 3.1.5"
gem "haml-rails", "~> 0.3.5", :group => :development
gem "bootstrap-sass", ">= 2.0.1"
gem 'rspec-rails'

gem "omniauth-google-oauth2"
gem 'google-api-client'
gem 'mechanize'

group :development, :test do
	gem 'sqlite3'
end

group :production do
	gem 'pg'
	gem 'newrelic_rpm'
	gem 'sentry-raven'
end

group :development do
	gem 'guard'
	gem 'guard-livereload'
	gem 'guard-pow'
	gem 'guard-rspec'
  gem 'sextant'
end

gem 'devise', '3.0.0'
gem 'omniauth'
gem 'omniauth-twitter', '>=0.0.16'
gem 'omniauth-facebook'
gem 'omniauth-linkedin'

# Mobile
gem 'mobylette'
gem 'jquery_mobile_rails'

gem 'geokit', '1.6.5'
gem 'geokit-rails3'
gem 'redis-objects'

gem 'ffaker'
gem 'factory_girl_rails'

gem 'puma', " ~> 2.0.0"

gem 'twitter','4.7.0'
#gem 'fb_graph'
gem 'linkedin'
#gem 'klout'
gem 'carrierwave'
# gem 'mini_magick'
gem 'fog', ">=1.6.0"

gem 'rails_config','0.2.5'
gem "kaminari"
gem 'authorize-net'
gem 'saaspose'
gem 'confiture', "0.1.4"

gem 'wicked_pdf'    #For printing the profile as PDF using wkhtmltopdf
gem "recaptcha", :require => "recaptcha/rails"
gem 'bitly'
gem "koala"
gem "faraday", '0.8.7'
gem "google_visualr", ">= 2.1.9"
gem 'sunspot_rails'
gem 'sunspot_solr'
gem 'time_diff'

gem 'capistrano'
gem 'rvm-capistrano'
gem 'grit'
gem 'flowdock'
gem 'hashie', '~>1.2'
gem 'whenever', :require => false
gem 'paypal-sdk-rest'

gem 'rest-client'
gem "highcharts-rails", "~> 3.0.0"
gem "twilio-ruby", "~> 3.9.0"

gem "rack_timer", git: "https://github.com/joelhegg/rack_timer.git"

# Intentionally added at the bottom as per the recommendation at
# https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-installation#Installing_the_Gem
group :development do
  gem 'newrelic_rpm'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment