Skip to content

Commit

Permalink
📝 Documentation of how to manage dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Feb 29, 2024
1 parent 5466d0e commit ffef9a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions debug_logging.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ Automatically log selected methods and their arguments as they are called at run
spec.executables = []
spec.require_paths = ["lib"]

# Root Gemfile is only for local development only. It is not loaded on CI.
# On CI we only need the gemspecs' dependencies (including development dependencies).
# Exceptions, if any, will be found in gemfiles/*.gemfile

spec.add_dependency("colorize", ">= 0")

# Optional
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/coverage.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

source "https://rubygems.org"

# Root Gemfile is only for local development.
# Root Gemfile is only for local development only. It is not loaded on CI.
# On CI we only need the gemspecs' dependencies (including development dependencies).
# Exceptions, if any, will be found in gemfiles/*.gemfile

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/style.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

source "https://rubygems.org"

# Root Gemfile is only for local development.
# Root Gemfile is only for local development only. It is not loaded on CI.
# On CI we only need the gemspecs' dependencies (including development dependencies).
# Exceptions, if any, will be found in gemfiles/*.gemfile

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/vanilla.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

source "https://rubygems.org"

# Root Gemfile is only for local development.
# Root Gemfile is only for local development only. It is not loaded on CI.
# On CI we only need the gemspecs' dependencies (including development dependencies).
# Exceptions, if any, will be found in gemfiles/*.gemfile

Expand Down

0 comments on commit ffef9a7

Please sign in to comment.