Skip to content

Commit 11b4aef

Browse files
committed
gemspec fix
1 parent 99434e9 commit 11b4aef

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
[workspace]
66
members = ["./ext/rb_mumble_protocol"]
7-
# resolver = "2"
7+
resolver = "1"

Gemfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ source "https://rubygems.org"
66
gemspec
77

88
gem "rake", "~> 13.0"
9-
109
gem "rake-compiler"
11-
gem "rb_sys", "~> 0.9.63"
1210

13-
gem "rspec", "~> 3.0"
14-
15-
gem "rubocop", "~> 1.21"
11+
gem "rb_sys", "~> 0.9.63"
1612

1713
group :test, :development do
14+
gem "rspec", "~> 3.0"
15+
gem "rubocop", "~> 1.21"
1816
gem 'byebug'
1917
end

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rb_mumble_protocol (0.2.0)
4+
rb_mumble_protocol (0.2.1)
55

66
GEM
77
remote: https://rubygems.org/

lib/rb_mumble_protocol/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RbMumbleProtocol
4-
VERSION = "0.2.0"
4+
VERSION = "0.2.1"
55
end

rb_mumble_protocol.gemspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ Gem::Specification.new do |spec|
2626
spec.require_paths = ["lib"]
2727
spec.extensions = ["ext/rb_mumble_protocol/Cargo.toml"]
2828

29+
spec.add_development_dependency "rspec", "~> 3.0"
30+
spec.add_development_dependency "rubocop", "~> 1.21"
31+
spec.add_development_dependency "byebug"
32+
2933
# Uncomment to register a new dependency of your gem
3034
# spec.add_dependency "example-gem", "~> 1.0"
3135

0 commit comments

Comments
 (0)