-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
104 lines (85 loc) · 2.72 KB
/
Gemfile
File metadata and controls
104 lines (85 loc) · 2.72 KB
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
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem "json", "~> 1.7.7"
gem 'pg', '~> 0.13.2'
gem "thin"
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'twitter-bootstrap-rails', '~> 2.1.3'
end
gem 'jquery-rails'
gem 'haml', '~> 3.1.6'
# using haml-rails, because haml gem dosn't give gemerators for rails 3
gem 'haml-rails', '~> 0.3.4'
gem 'simple_form', '~> 2.0.2'
gem 'capistrano-unicorn', '~> 0.1.5'
gem "capistrano", "~> 2.9.0", :require => false
gem "capistrano-ext"
gem "capistrano_colors", "~> 0.5.5", :require => false
gem 'rvm', '~> 1.11.3'
gem 'rvm-capistrano', '~> 1.2.2'
gem 'cancan', '~> 1.6.7'
gem 'inherited_resources', '~> 1.3.1'
gem 'authlogic', '~> 3.1.0'
gem "has_scope"
gem "carrierwave", "~> 0.6.2"
gem "mini_magick", "~> 3.4"
gem "fancybox-rails", "~> 0.1.4"
gem 'awesome_nested_set', '~> 2.1.4'
gem "friendly_id", "~> 4.0.8"
gem "ancestry", "~> 1.3.0"
gem "kaminari", "~> 0.14.1"
gem "whenever", "~> 0.7.3", require: false
gem 'faker'
gem 'russian', '~> 0.6.0'
gem 'markitup-rails', '~> 0.2.1'
gem "el_finder", "~> 1.0.21"
gem "RedCloth", "~> 4.2.9"
gem 'newrelic_rpm'
group :development, :test do
gem 'rspec-rails', '~> 2.10.1'
gem 'capybara', '~> 1.1.2'
gem "capybara-webkit", "~> 0.12.1" # need install libqt4-dev
gem 'launchy', '~> 2.1.0'
## If it is a problem with execjs runtimes after rspec:install,
## use node.js or uncomment next lines
#gem 'execjs'
#gem 'therubyracer'
case RbConfig::CONFIG['host_os']
when /darwin/i
gem 'rb-fsevent'
gem 'growl'
when /linux/i
gem 'libnotify', "~> 0.7.2"
gem 'rb-inotify', "~> 0.8.8"
when /mswin|windows/i
gem 'rb-fchange'
gem 'win32console'
gem 'rb-notifu'
end
gem "guard", "~> 1.0.3"
gem "guard-bundler", ">= 0.1.3"
gem "guard-rails", ">= 0.1.0"
gem 'guard-rspec', '~> 0.7.3'
gem 'guard-livereload', '~> 0.4.2'
gem 'database_cleaner'
gem 'factory_girl_rails', '~> 3.3.0', :require => false
# It's a problem with rails3-generators and factory_girl_rails.
# Fixture generator for factory_girl moved from rails3-generator, but rails3-generator 0.17.4 gem
# have factory_girl generator yet (https://github.com/thoughtbot/factory_girl_rails/issues/53)
# Use a temporary solution by "https://github.com/neocoin/rails3-generators.git".
gem 'rails3-generators', :git => 'https://github.com/neocoin/rails3-generators.git'
#for debuging
gem 'linecache19', :git => 'git://github.com/mark-moseley/linecache'
gem 'ruby-debug-base19x', '~> 0.11.30.pre4'
gem 'ruby-debug19'
gem 'hirb'
gem "pry-rails"
end
group :test do
gem "shoulda", "~> 3.1.1"
gem "email_spec", "~> 1.2.1"
end