-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
77 lines (54 loc) · 1.93 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
# -*- coding: utf-8 -*-
source 'http://rubygems.org'
#gem 'rails', :git => "git://github.com/rails/rails.git", :branch => "3-0-stable"
gem 'rake'
gem 'rails', '~> 3.2.11'
gem 'pg'
gem 'state_machine'
gem 'acts-as-taggable-on'
gem "haml"
gem "compass"
gem "formtastic" #, :git => "http://github.com/justinfrench/formtastic.git", :branch => "rails3"
gem "truncate_html" #, :git =>'git://github.com/dapi/truncate_html.git'
gem "feedzirra"
gem 'bson_ext' # Не помню для чего это
gem 'unicorn'
gem 'stateful_link'
gem "airbrake"
gem 'mail'
gem "devise", :git => "git://github.com/plataformatec/devise.git"
gem 'typus' #, :git => 'https://github.com/fesplugas/typus.git'
gem "will_paginate", "~> 3.0.pre2"
gem 'grackle'
gem 'foreverb'
gem 'annotate'
# gem "russian", :git => "https://github.com/dima4p/russian.git"
gem "russian", :git => "https://github.com/kelvich/russian.git"
# Стили комментариев http://www.mcdowall.info/john/blog/2011/06/why-rails-3-1-streaming-means-you-still-have-to-think-about-your-head/
gem 'acts_as_commentable_with_threading'
gem 'mini_magick'
gem 'carrierwave'
gem "hpricot"
gem "haml-rails" # вместо подкрутки application.rb
gem "jquery-rails"
gem 'img_gravatar'
#gem 'human_dates', :path => '~/code/gems/human_dates'
group :development, :test do
gem 'capistrano'
gem 'capistrano-recipes0', :git => 'git://github.com/BrandyMint/capistrano-recipes0.git'
gem 'capistrano-rbenv'
gem 'holepicker', :require => false
#gem 'ruby-debug19'
#gem 'guard'
#gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
#gem 'libnotify'
#gem 'rb-inotify'
# gem 'guard-rspec'
#gem 'guard-livereload'
#gem 'guard-compass'
#
gem 'wirble', :require => 'wirble'
gem "mocha", :group => :test
#gem 'limerick_rake', :git => "http://github.com/dapi/limerick_rake.git", :branch => "rails3"
#gem 'looksee', :require => 'looksee'
end