mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
31 lines
997 B
Ruby
31 lines
997 B
Ruby
# 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) _____
|