-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,654 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Generate Release Note | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Generate release note | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
generate_release_notes: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,13 @@ Gem::Specification.new do |spec| | |
spec.version = ImportmapMocha::VERSION | ||
spec.authors = ['Takashi Kato'] | ||
spec.email = ['[email protected]'] | ||
spec.homepage = 'https://github.com/tohosaku/importmap_mocha-rails' | ||
spec.homepage = 'https://github.com/redmine-ui/importmap_mocha-rails' | ||
spec.summary = 'mochajs rails integration' | ||
spec.description = 'Add JavaScript testing tools in importmap environment.' | ||
spec.description = 'Add JavaScript testing tools in importmap-rails environment.' | ||
spec.required_ruby_version = '>= 2.7.0' | ||
spec.license = 'MIT' | ||
|
||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = spec.homepage | ||
spec.metadata['changelog_uri'] = spec.homepage | ||
|
@@ -19,6 +20,5 @@ Gem::Specification.new do |spec| | |
Dir['app/**/*', 'config/**/*', 'lib/**/*', 'vendor/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md'] | ||
end | ||
|
||
spec.add_dependency 'rails', '~> 7.0' | ||
spec.add_dependency 'importmap-rails' | ||
spec.add_dependency 'importmap-rails', '~> 2.0.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module ImportmapMocha | ||
VERSION = '0.3.4' | ||
VERSION = '0.3.5' | ||
end |
Oops, something went wrong.