-
Notifications
You must be signed in to change notification settings - Fork 354
/
Gemfile
30 lines (18 loc) · 997 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
# encoding: utf-8
# Gemfile style guide derived from:
# http://mcdowall.info/posts/gemfile-best-practices-and-discourse/
# Use `bundle install` after changing this file
# `bundle update [gemname]` to force update of gem
# `bundle show [gemname]` to see where a bundled gem is installed
# `bundle open [gemname]` to edit a bundled gem
# `bundle package` to add gem to vendor/cache
source 'https://rubygems.org'
# place gems sourced from github.com in this section _________________________
# place gems sourced from a project path in this section _____________________
# place general project gems in this section (alphabetical order) ____________
gem 'git', '~> 1.3.0' # git management
gem 'github_changelog_generator', '~> 1.13.1'
gem 'rake', '~> 11.2.2'
gem 'version', '~> 1.0.0' # version management gem
# place gems related to test/specs in this section (alphabetical order) ______
# place gems related to development in this section (alphabetical order) _____