cirun 0.1.8 → 0.1.9

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: 12700777ed9dad1f737f23e3a2a6963b0184f375
4
- data.tar.gz: a1365b1dfbc6a33aa33c07bb057048c59eae0c01
3
+ metadata.gz: deabd4144056e3c3985f5c83cb15f29cb4a17007
4
+ data.tar.gz: 9b3f6c56f3dbbad2eb4816437c0c3c7bc62b824f
5
5
  SHA512:
6
- metadata.gz: 8e174e5a7a2b6b8c246d0d58256e6f21834a3d10cc9caea7d1f8983f024c6280184a35f9199333f3add6d7c459bd83f8f8ab3ac81025cbbd38d4526e7f12b47d
7
- data.tar.gz: f318917026a2fb8810d9c6b3661f6bf60943a9de97a84adcc62fc28030fb9b43272d15e9d956f43a232c51f70911fdba5b320dd4901636880c368e5f8013aabf
6
+ metadata.gz: aff180b904fac8c502b681232d2c2a5ffc7f6e2e270fa711047a4f3647a3a3c73044c04f46f3cbe4c3a196e5f1b614eff64cdb6a0669744e4c0ddc90e3fd606d
7
+ data.tar.gz: 3d929d0a591aed5f10cb6323da628f6a03df0c793156a092f9cecaae6112bf5dffc2b29e58e05fb48cca92ae52ba5a0c8fa48e9cb885c2b2110dc9512359c0b3
data/lib/cirun/runner.rb CHANGED
@@ -6,7 +6,7 @@ module Cirun
6
6
 
7
7
  def run
8
8
  ruby_short = @opts.ruby.split('-').first
9
- cmd = "docker -t run --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} --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"
10
10
  puts "Running:\n#{cmd}"
11
11
  %x[ #{cmd} ]
12
12
  end
data/lib/cirun/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Cirun
2
- VERSION = '0.1.8'.freeze
2
+ VERSION = '0.1.9'.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.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Malyshev