This repository has been archived by the owner on Jul 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·94 lines (77 loc) · 2.74 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
source 'https://rubygems.org'
gem 'rails'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# For running under windows, see :
# http://stackoverflow.com/questions/8847969/installing-typo-with-bundle-install-error-on-bluecloth-gem
# About how to build bluecloth on windows, like with RailsInstaller
# I (rhaamo) recommands to use RailsInstaller bundle, better and easy than all pieces by hand
gem 'mysql2'
gem 'haml'
gem 'twitter-bootstrap-rails'
# Some gems aren't available under windows
platforms :ruby do
gem 'unicorn'
gem 'therubyracer'
gem 'rmagick'
end
gem 'less-rails'
# And some ...
# Please follow https://github.com/rmagick/rmagick/wiki
# To install required stuff
# path=c:\RailsInstaller\ImageMagick-6.7.9-Q8;%path%
# gem install rmagick -- '--with-opt-dir="c:\RailsInstaller\ImageMagick-6.7.9-Q8"'
#gem 'rmagick'
gem 'mini_magick'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :production do
gem 'newrelic_rpm'
end
group :development do
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
#gem 'ruby-debug19'
gem 'sqlite3'
gem 'pry'
gem 'thin'
gem 'better_errors'
gem 'binding_of_caller'
#gem 'meta_request'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem 'authlogic'
gem 'sentient_user'
gem 'kaminari'
gem 'cancan'
gem 'friendly_id'
gem 'randumb' # https://github.com/spilliton/randumb
gem 'carrierwave' # https://github.com/jnicklas/carrierwave
gem "nested_form", :git => "git://github.com/ryanb/nested_form.git"
gem "bb-ruby", :git => "git://github.com/marcandre/bb-ruby.git"
gem 'markitup_rails', :git => "git://github.com/NuxosMinecraft/markitup_rails.git"
gem 'ledermann-rails-settings', :require => 'rails-settings', :git => "git://github.com/ledermann/rails-settings.git" # https://github.com/ledermann/rails-settings
gem 'redcarpet' # markdown
gem 'unread' # https://github.com/ledermann/unread
gem 'squeel' # https://github.com/ernie/squeel
gem 'activemerchant', :require => 'active_merchant'
gem 'by_star' # https://github.com/radar/by_star
gem 'exceptional' # https://www.exceptional.io/
#gem 'jsonapi', :git => "git://github.com/kreeger/jsonapi-ruby.git" # JSONAPI bukkit/minecraft API
gem 'minecraft-jsonapi', :git => "git://github.com/Fustrate/minecraft-jsonapi.git"
gem 'nokogiri'
gem 'delayed_job_active_record' # https://github.com/collectiveidea/delayed_job
gem "daemons"