Skip to content

Commit

Permalink
Merge pull request #268 from SwedbankPay/feature/dx-914_gemspec
Browse files Browse the repository at this point in the history
DX-914: Remove lockfile
  • Loading branch information
asbjornu authored Nov 5, 2021
2 parents 8859105 + d684c18 commit 44fab91
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 225 deletions.
39 changes: 17 additions & 22 deletions .docker/entrypoint/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,24 @@

source 'https://rubygems.org'

group :jekyll_plugins do
gem 'jekyll', '~> 4'
gem 'jekyll-material-icon-tag'
gem 'jemoji'
gem 'kramdown-plantuml', '>= 1.1.12'
gem 'rouge'
end

gem 'concurrent-ruby'
gem 'docopt'
# Neccessary to prevent Jekyll errors. See https://github.com/github/personal-website/issues/166
gem 'concurrent-ruby', '~> 1.0'
gem 'docopt', '>= 0.6'
gem 'faraday', '> 1.0'
gem 'html-proofer'
gem 'html-proofer-unrendered-markdown'
gem 'rake'
gem 'jekyll', '~> 4'
gem 'jekyll-material-icon-tag', '~> 1.0'
gem 'jemoji', '>= 0.12'
gem 'kramdown-plantuml', '>= 1.1.12'
gem 'rouge', '~> 3'

group :development, :test do
gem 'diffy'
gem 'its'
gem 'rspec'
gem 'rubocop', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
gem 'codecov', '>= 0.6'
gem 'diffy', '~> 3'
gem 'html-proofer', '~> 3'
gem 'html-proofer-unrendered-markdown', '>= 0.1'
gem 'its', '>= 0.2'
gem 'rake', '~> 13'
gem 'rspec', '~> 3'
gem 'rubocop', '~> 1'
gem 'rubocop-rake', '>= 0.6'
gem 'rubocop-rspec', '~> 2'
end

gem 'codecov', require: false, group: :test
203 changes: 0 additions & 203 deletions .docker/entrypoint/Gemfile.lock

This file was deleted.

10 changes: 10 additions & 0 deletions .docker/entrypoint/lib/gem_version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Gem
# Gem Specification
class Specification
def self.gem_version
'0.0.1.dev'
end
end
end
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ coverage/
docker-compose.yml
tmp/
.vscode
Gemfile.lock

0 comments on commit 44fab91

Please sign in to comment.