rdm 0.4.14 → 0.4.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rdm +10 -10
  3. data/lib/rdm/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ae5738c0a6b6daefdcdc6d3cf7c75c299fbec69
4
- data.tar.gz: cd16a76625d211d29fcbf30b0b2d15059b622485
3
+ metadata.gz: 32eb4ff7ece2427490127c92e4e09ac7c83f493b
4
+ data.tar.gz: 4cbe6da520996a9969cf4adc4fc2c3f3dd6445b9
5
5
  SHA512:
6
- metadata.gz: 24648c9f36d158e9bb75de5bb3b76ee330399320e9ad51484325021df3d5d3707a143de173e0a4ced317f0b4017d8a620494716d7337b5faf23bf170674187a2
7
- data.tar.gz: 00f3f4e83362075aafd25bdd50b9b1a3e68b842ed8cec7dd9010249dcda08f869a61e93f09c899b5fdab1fb04969bb14c8c68a71bacb0af6804aaefa25afa49d
6
+ metadata.gz: 871895289114d04c929dfa0f306ee4875be09b8d10abe49aa97c9f7a140499377774495b7fe114313731f9ae3feedb6ff5aebcdab6cc8fa298834c8c05c9947c
7
+ data.tar.gz: f369d60e3538eccd33ebc45cf4f9b1f3fd2c9597b5465e95e7af1260825842051b850257d9d16a3789cf07d9e8fa7fea01594f8cb000ea4c9d65eae855065041
data/bin/rdm CHANGED
@@ -60,7 +60,7 @@ class RdmCliRunner
60
60
  c.action do |args, options|
61
61
  package_name = (args.first || "")
62
62
  defaults = {
63
- current_path: `pwd`.chomp,
63
+ current_path: File.expand_path(`pwd`.chomp),
64
64
  package_name: package_name,
65
65
  path: package_name.downcase.gsub(/\s+/, '_')
66
66
  }
@@ -82,7 +82,7 @@ class RdmCliRunner
82
82
  c.action do |args, options|
83
83
  revision = (args.first || "HEAD")
84
84
  options = {
85
- path: `pwd`.chomp,
85
+ path: File.expand_path(`pwd`.chomp),
86
86
  revision: revision,
87
87
  }
88
88
  Rdm::CLI::DiffPackage.run(options)
@@ -100,7 +100,7 @@ class RdmCliRunner
100
100
  c.action do |args, options|
101
101
  package_name = (args.first || "")
102
102
  opts = {
103
- project_path: `pwd`.chomp,
103
+ project_path: File.expand_path(`pwd`.chomp),
104
104
  package_name: package_name,
105
105
  compile_path: options.path
106
106
  }
@@ -125,7 +125,7 @@ class RdmCliRunner
125
125
 
126
126
  Rdm::CLI::TemplateGenerator.run(
127
127
  template_name: template_name,
128
- current_path: `pwd`.chomp,
128
+ current_path: File.expand_path(`pwd`.chomp),
129
129
  local_path: options_hash.delete(:path),
130
130
  locals: options_hash
131
131
  )
@@ -143,7 +143,7 @@ class RdmCliRunner
143
143
 
144
144
  Rdm::CLI::DependenciesController.run(
145
145
  package_name: package_name,
146
- project_path: `pwd`.chomp
146
+ project_path: File.expand_path(`pwd`.chom)p
147
147
  )
148
148
  end
149
149
  end
@@ -162,7 +162,7 @@ class RdmCliRunner
162
162
 
163
163
  Rdm::CLI::Config.run(
164
164
  config_name: config_name,
165
- current_path: `pwd`.chomp,
165
+ current_path: File.expand_path(`pwd`.chomp),
166
166
  config_data: options_hash
167
167
  )
168
168
  end
@@ -193,11 +193,11 @@ class RdmCliRunner
193
193
  options_hash = options.__hash__
194
194
  options_hash.delete(:trace)
195
195
 
196
- Rdm.root(`pwd`.chomp)
196
+ Rdm.root(File.expand_path(`pwd`.chomp))
197
197
  Rdm::SpecRunner.run(
198
198
  package: package_name,
199
199
  spec_matcher: spec_matcher,
200
- path: `pwd`.chomp,
200
+ path: File.expand_path(`pwd`.chomp),
201
201
  skip_ignored_packages: true,
202
202
  show_missing_packages: true,
203
203
  from: options_hash[:from]
@@ -221,11 +221,11 @@ class RdmCliRunner
221
221
  revision = args[0]
222
222
 
223
223
  ENV['RUBY_ENV'] = 'test'
224
- Rdm.root(`pwd`.chomp)
224
+ Rdm.root(File.expand_path(`pwd`.chomp))
225
225
 
226
226
  Rdm::CLI::DiffSpecRunner.run(
227
227
  revision: revision,
228
- path: `pwd`.chomp
228
+ path: File.expand_path(`pwd`.chom)p
229
229
  )
230
230
  end
231
231
  end
@@ -1,3 +1,3 @@
1
1
  module Rdm
2
- VERSION = '0.4.14'.freeze
2
+ VERSION = '0.4.14.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.14
4
+ version: 0.4.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Droid Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-12 00:00:00.000000000 Z
11
+ date: 2019-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -299,7 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
299
299
  version: '0'
300
300
  requirements: []
301
301
  rubyforge_project:
302
- rubygems_version: 2.6.12
302
+ rubygems_version: 2.5.2.3
303
303
  signing_key:
304
304
  specification_version: 4
305
305
  summary: Ruby Dependency Manager