forked from strika/clearbooks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
105 lines (72 loc) · 1.48 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
# File: Gemfile
# Sources to draw gems from
source "https://rubygems.org"
group :production do # {{{
########
#
# Do not add production gems here, but instead use
# clearbooks.gemspec file !
#
####
end # }}}
group :default do # {{{
# System
gem 'bundler'
gem 'rake'
gem 'thor'
end # }}}
group :development do # {{{
# Generate manuals
gem 'ronn', '<= 0.7.2'
gem 'rdiscount'
# REPL
gem 'racksh'
platforms :ruby_19, :ruby_20 do
gem 'pry-debugger'
gem 'pry-stack_explorer'
end
gem 'shotgun'
gem 'rerun'
gem 'guard'
gem 'guard-shell'
gem 'ptools'
gem 'os'
gem 'awesome_print'
# Notifications from live-reload etc.
gem 'growl'
gem 'ruby-growl'
gem 'rb-inotify' unless RUBY_PLATFORM=~ /darwin/
end # }}}
group :test do # {{{
# # Testing / Development
gem 'aruba'
gem 'rspec', '~> 2.0'
gem 'guard-rspec', require: false
gem 'nyan-cat-formatter'
gem 'simplecov', '~> 0.8.1'
gem 'simplecov-rcov'
gem 'simplecov-rcov-text'
gem 'metric_fu', '>= 4.5.x'
gem 'cucumber'
end # }}}
group :security do # {{{
# 0-days?
gem 'bundler-audit'
end # }}}
group :profiling do # {{{
gem 'stackprof'
end # }}}
group :docs do # {{{
gem 'yumlcmd'
gem 'coderay' # syntax highlighting and code formatting in html
gem 'redcarpet'
gem 'github-markup'
gem 'htmlentities'
# Documentation
gem 'yard'
gem 'wicked_pdf'
gem 'wkhtmltopdf'
end # }}}
# Declare clearbooks.gemspec
gemspec
# vim:ts=2:tw=100:wm=100