Skip to content

Commit

Permalink
Fix import statement (#13)
Browse files Browse the repository at this point in the history
* Fix import statement

* Update gemfile.lock
  • Loading branch information
ZekeSnider authored Sep 25, 2024
1 parent 248a878 commit 7254476
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
jekyll-apple-maps (1.0.1)
jekyll-apple-maps (1.0.2)

GEM
remote: https://rubygems.org/
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ gem build jekyll-apple-maps.gemspec
gem install ./jekyll-apple-maps-1.0.0.gem
```

To publish a new version of the gem:

1. Merge changes to `main` branch with updated version in `lib/jekyll/apple_maps/version.rb` and `jekyll-apple-maps.gemspec`
2. `gem build jekyll-apple-maps.gemspec`
3. `gem push jekyll-apple-maps-<version here>.gem`

You can also use the local version of this gem from your gemfile:
```
gem 'jekyll-apple-maps', path: '/PathHere/jekyll-apple-maps'
Expand Down
2 changes: 1 addition & 1 deletion jekyll-apple-maps.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "jekyll-apple-maps"
spec.version = "1.0.1"
spec.version = "1.0.2"
spec.authors = ["Zeke Snider"]
spec.email = ["[email protected]"]

Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll-apple-maps.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require 'jekyll'

require_relative "jekyll/apple-maps/snapshot_block.rb"
require_relative "jekyll/apple_maps/snapshot_block.rb"
2 changes: 1 addition & 1 deletion lib/jekyll/apple_maps/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Jekyll
module AppleMaps
VERSION = "1.0.1"
VERSION = "1.0.2"
end
end

0 comments on commit 7254476

Please sign in to comment.