Skip to content

Commit

Permalink
Merge pull request #213 from gjtorikian/kiv/always-rb_sys
Browse files Browse the repository at this point in the history
always use rb_sys (don't use Ruby's emerging cargo tooling where available)
  • Loading branch information
gjtorikian committed Jan 9, 2023
2 parents 13e17fc + 61d3afc commit 2e76561
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion commonmarker.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }

spec.require_paths = ["lib"]
spec.extensions = ["ext/commonmarker/Cargo.toml"]
spec.extensions = ["ext/commonmarker/extconf.rb"]

spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
Expand Down
2 changes: 1 addition & 1 deletion ext/commonmarker/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

require_relative "_util"

create_rust_makefile("commonmarker")
create_rust_makefile("commonmarker/commonmarker")
2 changes: 1 addition & 1 deletion lib/commonmarker/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Commonmarker
VERSION = "1.0.0.pre5"
VERSION = "1.0.0.pre6"
end

0 comments on commit 2e76561

Please sign in to comment.