Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary explicit dependencies: sprockets, activesupport, sass and pry #218

Merged
merged 6 commits into from
Mar 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

## Unreleased
## 2.2.1

- [Pull request: #125: Fix API docs showing required properties as optional](https://github.com/alphagov/tech-docs-gem/pull/125)
- [#218: Remove unnecessary explicit dependencies: sprockets, activesupport, sass and pry](https://github.com/alphagov/tech-docs-gem/pull/218)
- [#125: Fix API docs showing required properties as optional](https://github.com/alphagov/tech-docs-gem/pull/125)

## 2.2.0

Expand Down
5 changes: 0 additions & 5 deletions govuk_tech_docs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "activesupport"
spec.add_dependency "chronic", "~> 0.10.2"
spec.add_dependency "middleman", "~> 4.0"
spec.add_dependency "middleman-autoprefixer", "~> 2.10.0"
Expand All @@ -43,12 +42,8 @@ Gem::Specification.new do |spec|
spec.add_dependency "middleman-syntax", "~> 3.2.0"
spec.add_dependency "nokogiri"
spec.add_dependency "openapi3_parser", "~> 0.9.0"
spec.add_dependency "pry"
spec.add_dependency "redcarpet", "~> 3.5.0"
spec.add_dependency "sass"
spec.add_dependency "sprockets", "~> 4.0.0"

spec.add_development_dependency "bundler", "~> 2.2.0"
spec.add_development_dependency "byebug"
spec.add_development_dependency "capybara", "~> 3.32"
spec.add_development_dependency "jasmine", "~> 3.5.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require "erb"
require "openapi3_parser"
require "uri"
require "pry"
require "govuk_tech_docs/api_reference/api_reference_renderer"

module GovukTechDocs
Expand Down
2 changes: 1 addition & 1 deletion lib/govuk_tech_docs/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module GovukTechDocs
VERSION = "2.2.0".freeze
VERSION = "2.2.1".freeze
end