forked from slact/nchapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
78 lines (65 loc) · 1.45 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
#!/usr/bin/ruby
source 'https://rubygems.org'
gem 'json'
gem 'cuba'
gem 'roda'
gem 'syro'
gem 'unicorn'
gem 'scrypt'
gem 'redcarpet'
gem 'pygments.rb'
gem 'git'
gem 'fpm', :git => "https://github.com/slact/fpm.git"
#rack stuff
gem 'warden'
gem 'rack-contrib'
gem 'rack-abstract-format'
gem 'rack-respond_to'
gem 'rack-referrals'
gem 'muster'
gem 'rack-attack'
gem 'chrome_logger'
gem 'rack-detect-tor'
gem 'haml'
gem 'racksh'
gem 'redis-rack'
#rack reloader
gem "mr-sparkle"
gem "redd"
gem 'hiredis'
gem 'redis', :require => ["redis/connection/hiredis", "redis"]
gem 'queris', git: "https://github.com/slact/queris.git"
gem 'hobbit', git: 'https://github.com/slact/hobbit.git'
#if File.directory?(queris_path= File.expand_path("../hobbit"))
# gem 'hobbit', :path => queris_path
#else
# gem 'hobbit', github: 'slact/hobbit'
#end
gem 'hobbit-contrib', git: 'https://github.com/slact/hobbit-contrib.git', require: 'hobbit/contrib'
gem 'i18n'
gem 'rack-protection'
# Uncomment this if you want to use Sass
#gem 'sass'
gem 'sprockets'
gem 'tilt'
gem 'thin'
group :development do
gem "pry"
gem "pry-coolline"
gem "pry-doc"
gem "pry-remote"
#gem "pry-rescue"
gem "pry-git"
gem "pry-theme"
gem 'pry-debundle'
gem "pry-byebug", "~> 1.3.3"
#gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rake'
end
group :test do
gem 'minitest', require: 'minitest/autorun'
gem 'minitest-reporters'
gem 'rack-test', require: 'rack/test'
end