troml 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8b32eb82d7b2bb7b0d366e435405248d3a1454e611ea3c4c00c8cb1c3532733
4
- data.tar.gz: 22fe8c85fe18a4024cf64449eca7b25695e23cf816a38941bdef953d3541b6ad
3
+ metadata.gz: a8afe995854ad17cc3e856060bf1f0bb3fb599ab6ee19bc40a2edc6b3e67ce3e
4
+ data.tar.gz: b595b1c64e7d041e73bbb3bafb5899225388102254c6beb65c04cf34a099a84c
5
5
  SHA512:
6
- metadata.gz: 5385238a65243317cbf0b41be926281d04504714433c663ffadfcfa752a0c489db46543b5933c5f436411708cb723ab6ebaf1b889a05e1db5461c25113ac9201
7
- data.tar.gz: dfac733d4b8c3cd5609317e5f0a5f0d7f46edad769ac0a01345827b77238c346d6eaa6fdedab7bbb1c2f14a28c79eb001a84fb1396e729ef8719fd8e51400d33
6
+ metadata.gz: b89faf9e6f1397d039f01e26ccf37c27cd018f1ded736e554fbf7a97a218138a38d280a9fff3e59184fb3c0e3b13692b59d02a23793891e1f922ad15df4cb88c
7
+ data.tar.gz: 438d8f30031bb21d8e68c8cafe1aaefbec42a78e1b5740982ae04e515897fe10c931d03a7877fe03be07d90fce4c85e67fd21217c555f498f1278fda2ec63396
data/Gemfile.lock CHANGED
@@ -1,14 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- troml (0.1.3)
4
+ troml (0.1.4)
5
5
  rutie (~> 0.0.4)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  ast (2.4.2)
11
+ debug (1.5.0)
12
+ irb (>= 1.3.6)
13
+ reline (>= 0.2.7)
11
14
  gem-release (2.2.2)
15
+ io-console (0.5.11)
16
+ irb (1.4.1)
17
+ reline (>= 0.3.0)
12
18
  minitest (5.16.0)
13
19
  parallel (1.22.1)
14
20
  parser (3.1.2.0)
@@ -16,6 +22,8 @@ GEM
16
22
  rainbow (3.1.1)
17
23
  rake (13.0.6)
18
24
  regexp_parser (2.5.0)
25
+ reline (0.3.0)
26
+ io-console (~> 0.5)
19
27
  rexml (3.2.5)
20
28
  rubocop (1.29.1)
21
29
  parallel (~> 1.10)
@@ -45,6 +53,7 @@ PLATFORMS
45
53
  x86_64-linux
46
54
 
47
55
  DEPENDENCIES
56
+ debug
48
57
  gem-release (~> 2.2.2)
49
58
  minitest (~> 5.0)
50
59
  rake (~> 13.0)
data/lib/troml/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Troml
4
- VERSION = "0.1.4"
4
+ VERSION = "0.1.5"
5
5
  end
data/lib/troml.rb CHANGED
@@ -26,7 +26,7 @@ module Troml
26
26
  # However, while developing the gem, we want to be able to run the gem from its
27
27
  # source context, so we rely on Rutie's convention of loading the shared object
28
28
  # built by Cargo.
29
- if File.exist?("troml.so")
29
+ if File.exist?(File.join(__dir__, "troml.so"))
30
30
  # We are running in "installed" mode.
31
31
  # Load the shared object built by rubygems.
32
32
  require "troml.so"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: troml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pawan Dubey