forked from websumy/bitfun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
135 lines (91 loc) · 3.45 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql.
gem 'mysql2', '>= 0.3.13'
# Flexible authentication solution for Rails with Warden.
gem 'devise'
# Authorization Gem for Ruby on Rails
gem 'cancan'
# Standardized Multi-Provider Authentication
gem 'omniauth'
# xss_terminate. xss_terminate is a plugin in that makes stripping and sanitizing HTML stupid-simple. Install and forget
gem 'xss_terminate'
# MetaTags: a gem to make your Rails application SEO-friendly
gem 'meta-tags', require: 'meta_tags'
# Omniauth providers
gem 'omniauth-facebook'
gem 'omniauth-vkontakte'
gem 'omniauth-twitter'
# Symbolize attribute values in ActiveRecord
gem 'enumerize'
# A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Rails 3
gem 'kaminari'
# A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts
gem 'acts-as-taggable-on'
# Votable ActiveRecord for Rails.
gem 'acts_as_votable', '~> 0.5.0'
# Classier solution for file uploads for Rails, Sinatra and other Ruby web frameworks.
gem 'carrierwave'
# RMagick is an interface between the Ruby programming language and ImageMagick/GraphicsMagick.
gem 'rmagick'
# Forms made easy for Rails! It's tied to a simple DSL, with no opinion on markup
gem 'simple_form'
# ClientSideValidations made easy for your Rails v3.1+ applications!
gem 'client_side_validations', '3.2.0'
gem 'client_side_validations-simple_form','2.0.0'
# Russian language support for Ruby and Rails
gem 'russian'
gem 'devise-i18n'
# Easily include static pages in your Rails app.
gem 'high_voltage'
# Thin is a Ruby web server
gem 'thin'
# Show error in better format
gem 'better_errors'
gem 'binding_of_caller'
# use this gem only for testing VK widgets
gem 'localtunnel'
# MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface.
gem 'mailcatcher'
# A simple and straightforward settings solution that uses an ERB enabled YAML file and a singleton design pattern
gem 'settingslogic'
# Rails plugin for Sphinx. Sphinx 2.1.4 is highly recommended for Thinking Sphinx v3.1.0 or newer.
gem 'thinking-sphinx', '3.1.0'
# Mutes assets pipeline log messages
gem 'quiet_assets'
# Slim is a template language whose goal is reduce html syntax to the essential parts without becoming cryptic.
gem 'slim'
# A simple and lightweight mixin library for Sass
gem 'bourbon'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 3.2.3'
group :development do
gem 'meta_request'
end
group :assets do
# Toolkit from Twitter designed to kickstart development of webapps and sites
# gem "bootstrap-sass"
gem 'coffee-rails', '~> 3.2.1'
# HoganAssets compiles mustache templates with hogan.js on sprockets and the Rails asset pipeline.
gem 'hogan_assets'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
# jQuery File Upload for Rails
gem 'jquery-fileupload-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'acts_as_commentable_with_threading'
gem 'momentjs-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'