Skip to content

Commit

Permalink
Enhanced process for managing gem resources (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
RailsCod3rFuture authored Jul 10, 2022
1 parent f5e6d97 commit 382ab00
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 205 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.bundle
Gemfile.lock
/pkg
/test/mounted_app/test/dummy/log
/test/test_app/log
Expand Down
12 changes: 1 addition & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,4 @@ source "https://rubygems.org"

gemspec

gem "rails", ">= 6.1.6"
gem "rake", ">= 11.1"
gem "rack-proxy", require: false
gem "semantic_range", require: false
gem "nokogiri", "~> 1.13", ">= 1.13.6"
gem "rails-html-sanitizer", ">= 1.4.3"

group :test do
gem "minitest", "~> 5.0"
gem "byebug"
end
eval_gemfile File.expand_path("./Gemfile.development_dependencies", __dir__)
13 changes: 13 additions & 0 deletions Gemfile.development_dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

gem "rails", ">= 6.1.6"
gem "rake", ">= 11.1"
gem "rack-proxy", ">= 0.7.2"
gem "nokogiri", ">= 1.13.6"
gem "rails-html-sanitizer", ">= 1.4.3"


group :test do
gem "minitest", "~> 5.0"
gem "byebug"
end
194 changes: 0 additions & 194 deletions Gemfile.lock

This file was deleted.

0 comments on commit 382ab00

Please sign in to comment.