Skip to content

Commit 0e24daa

Browse files
committed
successfully built 4.0.3
1 parent a077ef4 commit 0e24daa

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ ENV RUBY_VERSION 3.3.0
5252
RUN rbenv install $RUBY_VERSION && rbenv global $RUBY_VERSION && rbenv rehash
5353
RUN echo 'gem: --no-rdoc --no-ri' >> /.gemrc
5454
RUN gem install bundler:2.4.22
55-
RUN gem install nokogiri --platform=ruby -- --use-system-libraries
55+
56+
RUN bundle config --global build.nokogiri --use-system-libraries
5657

5758
WORKDIR /data/github-markup
5859
COPY github-markup.gemspec .

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source "http://rubygems.org"
22
gemspec
33

4+
gem "nokogiri", force_ruby_platform: true
45
gem "posix-spawn", :platforms => :ruby
56
gem "redcarpet", :platforms => :ruby
67
gem "kramdown", :platforms => :jruby

github-markup-4.0.3.gem

6.5 KB
Binary file not shown.

github-markup.gemspec

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,18 @@ Gem::Specification.new do |s|
1010
DESC
1111
s.authors = ["Chris Wanstrath"]
1212
s.email = "[email protected]"
13-
s.homepage = "https://github.com/github/markup"
13+
github_link = "https://github.com/github/markup"
14+
s.homepage = github_link
1415
s.license = "MIT"
1516

17+
s.metadata = {
18+
"bug_tracker_uri" => "#{github_link}/issues",
19+
"changelog_uri" => "#{github_link}/releases",
20+
"documentation_uri" => github_link,
21+
"homepage_uri" => s.homepage,
22+
"source_code_uri" => github_link
23+
}
24+
1625
s.files = `git ls-files`.split($\)
1726
s.files += Dir['vendor/**/*']
1827
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }

lib/github-markup.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module GitHub
22
module Markup
3-
VERSION = '4.0.2'
3+
VERSION = '4.0.3'
44
Version = VERSION
55
end
66
end

0 commit comments

Comments
 (0)