forked from aureliano/programas-siconv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
35 lines (28 loc) · 787 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
source :rubygems
# Server requirements (defaults to WEBrick)
# gem 'thin'
# gem 'mongrel'
# Project requirements
gem 'rake'
gem 'sinatra-flash', :require => 'sinatra/flash'
# Component requirements
gem 'erubis', "~> 2.7.0"
gem 'mongoid', '2.4.12'
gem 'bson_ext', :require => "mongo"
gem 'twitter', '~> 4.4.0'
gem 'koala', '1.6.0'
# Test requirements
gem 'rspec', '2.12.0'
gem 'capybara'
gem 'cucumber'
gem 'rack-test', :require => "rack/test"
# Padrino Stable Gem
gem 'padrino', '0.10.5'
gem 'padrino-rpm'
gem 'newrelic_rpm' # https://devcenter.heroku.com/articles/newrelic
# Or Padrino Edge
# gem 'padrino', :git => 'git://github.com/padrino/padrino-framework.git'
# Or Individual Gems
# %w(core gen helpers cache mailer admin).each do |g|
# gem 'padrino-' + g, '0.10.5'
# end