sumodev 0.2 → 0.2.1

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
  SHA1:
3
- metadata.gz: 6a2594f6056cd2a4982f612ba66b069b3219ebf2
4
- data.tar.gz: 12fd73496885b8e92f763d78587f6ee988ad70b2
3
+ metadata.gz: 19d19f3d3f4b2a8f0d46bfd05f8bf5a758aee175
4
+ data.tar.gz: 7b9034006911044632470d90c997879e9eda2305
5
5
  SHA512:
6
- metadata.gz: ff23e9767c2e04db2583f5cca992b3255393931e63655a6acce209593ff4ea47bbf91ba8b7de6f4031e8bddc0bdae7df4721038dcf350851188e5b7cc3586ed6
7
- data.tar.gz: 0fda1ac15fcf7a7280d98e4cd0cc2d9e324f8fdaac4b957ed23f259d3fe95aa7fccd17b9b5f700053b606ccbdf082cad4ac21f32ed40182a7f6339f8046f0abc
6
+ metadata.gz: a28e04a6ae8a864a0dc9a6da035c1ea651c460ec11702284e04887626e20d4c4e04c3b8893c3a279f82723af74d72436c4dae1409cdadcca945eac0ed20691c9
7
+ data.tar.gz: cb813992a4e318fb82b64bc1e4d7bd473c8c1b318af3435d34b7f8697da8a09f2a9d1ab75f0e8653931084eacefcacbe6347e104700754382d1627d33166b0b2
@@ -19,8 +19,8 @@ class Sumodev::Commands::Box < Sumodev::Command
19
19
  File.expand_path(vagrantfile)
20
20
  end
21
21
 
22
- def run_vagrant_command(command)
23
- system "cd #{box_path}; vagrant #{command}"
22
+ def run_vagrant_command(command, *arguments)
23
+ system "cd #{box_path}; vagrant #{command} #{arguments.join(' ')}"
24
24
  end
25
25
 
26
26
  def box_running?
@@ -56,7 +56,7 @@ class Sumodev::Commands::Box < Sumodev::Command
56
56
 
57
57
  convert_sumofile_into_env_variables
58
58
  configure_port_mapping
59
- run_vagrant_command("up")
59
+ run_vagrant_command("up", "--provision")
60
60
  rescue Sumodev::Sumofile::NoSuchFileError
61
61
  say("No Sumofile found! Please define one so the correct versions will be used!", :red) && exit(1)
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module Sumodev
2
- VERSION = "0.2"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sumodev
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan De Poorter