-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
58 lines (40 loc) · 1.13 KB
/
Gemfile
File metadata and controls
58 lines (40 loc) · 1.13 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
source "https://rubygems.org"
# A simple DSL to easily develop RESTful APIs.
gem 'grape'
# A framework MOR Ruby (The Best)
#gem 'activerecord'
# Adapter Postgres Ruby
gem 'pg'
# Load variables in config/env.yml in ENV (variavel de ambiente).
gem 'envyable'
# Load Tasks para migratons from ActiveRecord.
#gem 'standalone_migrations'
#cliente da api da strans.
gem 'strans-client'
#Ajuda a gerenciar conexoes com banco.
#https://github.com/jhollinger/grape-activerecord
#gem "grape-activerecord"
gem "otr-activerecord"
#https://github.com/ruby-grape/grape-rabl
gem 'grape-rabl'
#Gem que ajuda a trabalhar com tempo
#https://github.com/kylewlacy/timerizer
gem 'timerizer'
gem 'sinatra'
gem 'rake'
group :development do
# Debug code Ruby require 'prbyebugy' and add 'byebug' in code
# for define breakpoint.
gem 'byebug'
gem 'ruby-debug-ide'
gem 'debase'
end
group :test do
gem 'rspec'
# Mock Requests. https://github.com/bblimke/webmock
#gem 'webmock'
# Record your test suite's HTTP interactions. https://github.com/vcr/vcr
#gem 'vcr'
#teste para web apis https://github.com/brooklynDev/airborne
gem 'airborne'
end