cirun 0.1.9 → 0.1.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: deabd4144056e3c3985f5c83cb15f29cb4a17007
4
- data.tar.gz: 9b3f6c56f3dbbad2eb4816437c0c3c7bc62b824f
3
+ metadata.gz: a9024b5aa3d035c69475d4eb9b836049de89e5ca
4
+ data.tar.gz: ccd041d58ca974f204cefff6d28573aa655050e0
5
5
  SHA512:
6
- metadata.gz: aff180b904fac8c502b681232d2c2a5ffc7f6e2e270fa711047a4f3647a3a3c73044c04f46f3cbe4c3a196e5f1b614eff64cdb6a0669744e4c0ddc90e3fd606d
7
- data.tar.gz: 3d929d0a591aed5f10cb6323da628f6a03df0c793156a092f9cecaae6112bf5dffc2b29e58e05fb48cca92ae52ba5a0c8fa48e9cb885c2b2110dc9512359c0b3
6
+ metadata.gz: 314e0ae3cb4809fec51c1fc5ccf7ae92a88cbf39eddf621c2628c3e5c0381bfaa8f4ae6861fc86192355491ba2814f2ade086622dacb843a8eb780403adf2c4a
7
+ data.tar.gz: 1d531cacc2543a0690ab9e09cd6b4759f55d70a8bd2cdb4c76dea59cb2c2c6dc1b25b1c5d68d40f987d5c6f1af467083f33896e941720fe0872f4463b1562386
data/lib/cirun/runner.rb CHANGED
@@ -6,9 +6,9 @@ module Cirun
6
6
 
7
7
  def run
8
8
  ruby_short = @opts.ruby.split('-').first
9
- cmd = "docker run -t --env RUBY_VERSION=ruby-#{ruby_short} --env DB=#{@opts.database} --env REDMINE=redmine-#{@opts.redmine} --env PLUGIN=#{@opts.plugin} --env DEPENDENT=#{@opts.dependent} --env CODEPATH=/plugin --mount type=bind,source=#{`pwd`.chomp},target=/var/www/ruby-#{ruby_short}/#{@opts.database}/redmine-#{@opts.redmine}/plugins/#{@opts.plugin} redmineup/#{@opts.plugin} /root/run_local.sh"
9
+ cmd = "docker run -t --env RUBY_VERSION=ruby-#{ruby_short} --env DB=#{@opts.database} --env REDMINE=redmine-#{@opts.redmine} --env PLUGIN=#{@opts.plugin} --env DEPENDENT=#{@opts.dependent} --mount type=bind,source=#{`pwd`.chomp},target=/var/www/ruby-#{ruby_short}/#{@opts.database}/redmine-#{@opts.redmine}/plugins/#{@opts.plugin} redmineup/#{@opts.plugin} /root/run_local.sh"
10
10
  puts "Running:\n#{cmd}"
11
- %x[ #{cmd} ]
11
+ puts `#{cmd}`
12
12
  end
13
13
  end
14
14
  end
data/lib/cirun/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Cirun
2
- VERSION = '0.1.9'.freeze
2
+ VERSION = '0.1.10'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cirun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Malyshev