Skip to content

Commit b54390f

Browse files
committed
ensure version consistency on dependencies
1 parent e68fd6f commit b54390f

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ gemspec
77

88
gem "rake", "~> 13.0"
99

10-
gem "rake-compiler"
10+
gem "rake-compiler", "~> 1.3"
1111

1212
gem "rspec", "~> 3.0"
1313

1414
gem "rubocop", "~> 1.21"
1515
gem 'rubocop-rspec', require: false
16+
17+
gem 'rake-compiler-dock'

Gemfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
markdown_it_ruby (0.1.0)
5-
rb_sys (~> 0.9.63)
5+
rb_sys (~> 0.9.108)
66

77
GEM
88
remote: https://rubygems.org/
@@ -18,8 +18,9 @@ GEM
1818
racc (1.7.3)
1919
rainbow (3.1.1)
2020
rake (13.1.0)
21-
rake-compiler (1.2.7)
21+
rake-compiler (1.3.0)
2222
rake
23+
rake-compiler-dock (1.9.1)
2324
rb_sys (0.9.108)
2425
regexp_parser (2.9.0)
2526
rexml (3.2.6)
@@ -67,10 +68,11 @@ PLATFORMS
6768
DEPENDENCIES
6869
markdown_it_ruby!
6970
rake (~> 13.0)
70-
rake-compiler
71+
rake-compiler (~> 1.3)
72+
rake-compiler-dock
7173
rspec (~> 3.0)
7274
rubocop (~> 1.21)
7375
rubocop-rspec
7476

7577
BUNDLED WITH
76-
2.5.18
78+
2.6.2

ext/markdown_it_ruby/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "markdown_it_ruby"
3-
version = "0.2.2"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Koji Onishi <fursich0@gmail.com>"]
66
license = "MIT"

markdown_it_ruby.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111
spec.description = ""
1212
spec.homepage = "https://github.com/fursich/markdown_it_ruby"
1313
spec.license = "MIT"
14-
spec.required_ruby_version = ">= 3.2.0"
14+
spec.required_ruby_version = ">= 3.1.0"
1515
spec.required_rubygems_version = ">= 3.3.11"
1616

1717
spec.metadata["homepage_uri"] = spec.homepage
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.extensions = ["ext/markdown_it_ruby/Cargo.toml"]
3434

3535
# Uncomment to register a new dependency of your gem
36-
spec.add_dependency "rb_sys", "~> 0.9.63"
36+
spec.add_dependency "rb_sys", "~> 0.9.108"
3737

3838
# For more information and examples about making a new gem, check out our
3939
# guide at: https://bundler.io/guides/creating_gem.html

0 commit comments

Comments
 (0)