-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgems.rb
29 lines (27 loc) · 1012 Bytes
/
gems.rb
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
source "https://rubygems.org"
# Specify your gem's dependencies in lennarb.gemspec
gemspec
group :maintenance, optional: true do
# [https://rubygems.org/gems/bake]
# Bake is a Ruby library that helps you to create a new project.
gem "bake"
# [https://rubygems.org/gems/covered]
# Covered is a Ruby library that helps you to test your project.
gem "covered"
# [https://rubygems.org/gems/bake-gem]
# Bake Gem is a Bake extension that helps you to create a new Ruby
# gem.
gem "bake-gem"
# [https://rubygems.org/gems/bake-modernize]
# Bake Modernize is a Bake extension that helps you to modernize your
# Ruby code.
gem "bake-modernize"
# [https://rubygems.org/gems/bake-github-pages]
# Bake Github Pages is a Bake extension that helps you to publish your
# project documentation to Github Pages.
gem "bake-github-pages"
# [https://rubygems.org/gems/utpia-project]
# Utopia Project is a Bake extension that helps you to create a new
# project.
gem "utopia-project"
end