This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
127 lines (103 loc) · 2.64 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
source 'http://rubygems.org'
ruby '2.1.8'
# Core
gem 'rails', '3.2.22'
gem 'i18n', '0.7.0'
# Database
gem 'pg', '~> 0.15.1'
gem 'mysql2'
gem 'thinking-sphinx', '2.0.10'
# Javascript
gem 'jquery-rails'
gem "rails-backbone"
gem "barista"
# Helpers
gem 'devise', '<2.1'
gem 'kaminari' # Pagination
gem 'mini_magick' # Resize images
gem 'gravtastic' # Gravatar images
gem 'feedzirra' # Pulling RSS data
gem 'whenever', :require => false # Deploying Cron jobs
gem 'RedCloth'
gem 'html5-rails'
gem 'haml-rails'
gem 'simple_form'
gem 'cocoon'
gem 'wmd-rails'
gem 'bluecloth'
gem 'rack-cache', :require => 'rack/cache'
gem 'dragonfly', '~>0.9.12'
gem 'twitter'
gem 'will_paginate'
gem 'xeroizer', :git => "git://github.com/waynerobinson/xeroizer.git"
# Notifications
gem 'airbrake', '3.1.15'
gem 'analytical'
gem 'rest-client', '>= 1.6.3'
#gem 'therubyracer'
gem 'dynamic_form'
group :assets do
gem 'sass-rails', " ~> 3.2.3"
gem 'bootstrap-sass', '~> 2.0.4.0'
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier', '>=1.0.3'
gem 'haml_coffee_assets'
gem 'haml_assets'
gem 'kalendae_assets', '0.2.1'
gem 'execjs'
end
group :development do
# Better documentation
gem 'tomdoc', :require => false
# Testing emails
gem 'mailcatcher', :require => false
# Deployment
gem 'capistrano', '2.15.5'
gem 'capistrano-ext', :require => false
gem 'capistrano-db-tasks', require: false
# Helpful Rails Generators
gem 'nifty-generators', '>= 0.4.4', :require => false
gem 'guard-livereload'
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'pry-rails'
# Debugging depending on the ruby you are running
gem 'hpricot'
# Placed here so generators work
gem 'rspec', '2.14.1'
gem 'rspec-rails', '2.14.2'
# on ubuntu 14.04 this seems to send invalid byte sequences, so set to false and upgraded to 0.5.0 (it is no longer maintained AFAIK)
gem 'rb-readline', '~> 0.5.0', :require => false
# Opening webpages during tests
gem 'launchy'
# Testing Javascript
gem 'jasmine', '~> 1.1.0.rc2'
# gem 'jasmine-headless-webkit', '~> 0.5.0'
gem 'test-unit'
end
group :test do
# Core Testing
gem 'capybara', '>= 2.1.0'
#gem "capybara-webkit", "~> 1.1.1"
gem 'machinist', :git => 'git://github.com/notahat/machinist.git', :branch => 'master'
gem 'cucumber-rails', :require => false
gem 'poltergeist'
# Test Helpers
gem 'database_cleaner'
gem 'faker'
gem 'timecop'
gem 'steak'
gem 'webrat'
gem 'email_spec'
gem 'shoulda', '~> 3.0.0.beta2'
# Test coverage
gem 'simplecov'
# Test feedback
#gem 'autotest'
gem 'rspec-instafail', :require => false
end
group :staging do
gem 'mail_safe'
end