-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
63 lines (55 loc) · 927 Bytes
/
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
source 'http://rubygems.org'
gem 'highlight'
group :development do
# GEMS for Development Productivity:
## Ruby Addons
gem 'i18n'
gem 'chronic'
gem 'bundler'
#gem 'thor'
#gem 'ore'
#gem 'nokogiri'
#gem 'hpricot'
## IRB Addons
gem 'looksee'
gem 'wirble'
gem 'hirb'
gem 'awesome_print'
gem 'utility_belt'
end
## Web Development
#gem 'rails'
gem 'sinatra'
gem 'haml'
#gem 'yui-compressor'
#gem 'rails_best_practices'
gem 'thin'
gem 'rdiscount'
## Database ORMs
#gem 'sequel'
#gem 'mongoid'
#gem 'ohm'
group :development do
## Testing
gem 'rspec'
#gem 'rspec-rails'
gem 'cucumber'
#gem 'steak'
gem 'launchy'
gem 'delorean'
## Deployment
#gem 'git'
#gem 'github'
#gem 'gist'
gem 'heroku'
#gem 'capistrano'
#gem 'capistrano_colors'
## System Tools
#gem 'teamocil'
#gem 'tmuxinator'
#gem 'qwandry'
#gem 'tick'
#gem 'projmgr'
gem 'rocco'
gem 'rake'
end