This repository has been archived by the owner on Jul 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Gemfile
71 lines (59 loc) · 3.3 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
source 'https://rubygems.org'
#gem 'bundler', '~> 1.3.0.pre.5' # Bundler version to match what is used on Heroku.
## Essentials
ruby '1.9.3' # Ruby!
gem 'rails', '~> 3.2.17' # Rails!
gem 'pg' # PostgreSQL, the database server
gem 'thin' # Web server
gem 'newrelic_rpm', :group => [:production, :staging, :development] # Rails analytics - see the Heroku addon
gem 'progressbar' # Display progress bars in terminal output
gem 'facets', :require => false # Some extra methods for ruby
gem 'jquery-ui-rails' # Package jQuery for the Rails 3.1+ asset pipeline
gem 'rollbar', '~>0.10.11' # SaaS to track exceptions
gem 'paper_trail', '~> 2.7' # Versioning gem tracks changes to models
## SEO
gem 'meta-tags', :require => 'meta_tags' # Search Engine Optimization (SEO) plugin for Ruby on Rails applications.
## Performance and optimization
gem 'delayed_job_active_record' # Lets you queue tasks as background jobs
gem 'dalli' # memcache gem for Rails.cache
gem 'memcachier'
gem 'kgio' # gives 20~30% performance boost to Dalli
## Admin
gem 'activeadmin', '0.6.0' # Back-end Content Management System
gem 'devise', '~> 2.0' # User authentication
gem 'cancan' # User permissions
## Search and NLP
gem 'tanker' # library for interacting with Searchify
gem 'hunspell-ffi' # Spellchecking library
gem 'text' # NLP algorithms
gem 'httparty' # For accessing APIs directly
gem 'json' # Convert between JSON and Ruby objects
## Content and presentation
gem 'kramdown' # Better markdown parser with support for markdown-extra
gem 'friendly_id' # Create permalinks / descriptive URLs / slugs
gem 'paperclip', '~> 3.0' # Easy file attachment library for ActiveRecord
gem 'aws-sdk', '~> 1.3.4' # Upload files to Amazon S3
## Gems used only for assets and not required
## in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.5' # Rails support for Sass, a CSS extension language
gem "meta_search", '>= 1.1.0.pre' # Active_admin search for form_for
gem 'uglifier', '>= 1.0.3' # Squash down Javascript for speed
gem 'coffee-rails', '~> 3.2.1'
end
## Testing
group :test, :development do
gem 'rspec-rails', '>= 2.0' # Testing framework
gem 'shoulda', '~> 3.5.0' # Extra RSpec matchers for Active Record Associations
gem 'factory_girl_rails', '~> 4.0' # Create factories to test against
gem 'capybara', '~> 2.1'
gem 'launchy'
gem 'guard', '~> 1.8.0'
gem 'guard-rspec', '~> 3.0.0'
gem 'terminal-notifier-guard'
gem 'sextant' # visit /rails/routes in the browser for nicer 'rake routes'
gem 'seed_dump', '~> 0.6.0' # Adds rake db:seed:dump to generate db/seeds.rb
end
group :test do
gem "sqlite3" # Use SQLite instead of PostgreSQL for tests
end