Skip to content

Version 0.2.0 release #4

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

Merged
merged 5 commits into from
Jan 30, 2023
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
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ jobs:
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
# gemfile:
# - gemfiles/jekyll_3.9.gemfile
# - gemfiles/jekyll_4.1.gemfile
# - gemfiles/jekyll_4.2.gemfile
# - gemfiles/jekyll_4.3.gemfile
# env:
# BUNDLE_GEMFILE: ${{ matrix.gemfile }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.com/toshimaru/kramdown-amp.svg?branch=master)](https://travis-ci.com/toshimaru/kramdown-amp)

# kramdown-amp(Kramdown Converter for AMP)
# kramdown-amp

kramdown-amp is [kramdown](https://kramdown.gettalong.org) converter for [AMP](https://amp.dev/). It works as a [Jekyll](https://jekyllrb.com)-plugin.

Expand Down
7 changes: 5 additions & 2 deletions kramdown-amp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = %q{Kramdown AMP Converter}
spec.description = %q{Kramdown AMP Converter}
spec.description = %q{Kramdown AMP Converter: kramdown-amp is kramdown converter for AMP. It works as a Jekyll-plugin.}
spec.homepage = "https://github.com/toshimaru/kramdown-amp"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.7.0'

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
Expand All @@ -20,7 +21,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.7'
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/toshimaru/kramdown-amp/releases"

spec.add_dependency 'fastimage'
spec.add_dependency 'kramdown'
Expand Down
2 changes: 1 addition & 1 deletion lib/kramdown/amp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Kramdown
module Amp
VERSION = "0.1.0"
VERSION = '0.2.0'
end
end
4 changes: 3 additions & 1 deletion test/kramdown/amp_test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require "test_helper"
# frozen_string_literal: true

require 'test_helper'

class Kramdown::AmpTest < Minitest::Test
def test_that_it_has_a_version_number
Expand Down
8 changes: 5 additions & 3 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require "kramdown-amp"
# frozen_string_literal: true

require "minitest/autorun"
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'kramdown-amp'

require 'minitest/autorun'