jumpstart 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :jumpstart_version_major: 0
3
3
  :jumpstart_version_minor: 5
4
- :jumpstart_version_patch: 3
4
+ :jumpstart_version_patch: 4
@@ -475,7 +475,7 @@ module JumpStart
475
475
  def execute_install_command
476
476
  Dir.chdir(@install_path)
477
477
  unless @install_command.nil? || @install_command.empty?
478
- puts "Executing command: #{@install_command.green} #{@project_name.green} #{@install_command_args.green}"
478
+ puts "Executing command: #{@install_command} #{@project_name} #{@install_command_args}".green
479
479
  system "#{@install_command} #{@project_name} #{@install_command_args}"
480
480
  end
481
481
  end
@@ -845,7 +845,7 @@ class TestJumpstartBase < Test::Unit::TestCase
845
845
  @test_project.instance_variable_set(:@install_command_args, "install command args")
846
846
  @test_project.expects(:system).once
847
847
  @test_project.instance_eval {execute_install_command}
848
- assert_equal "Executing command: \e[32mecho\e[0m \e[32mtest_jumpstart_project\e[0m \e[32minstall command args\e[0m\n", @test_project.output.string
848
+ assert_equal "\e[32mExecuting command: echo test_jumpstart_project install command args\e[0m\n", @test_project.output.string
849
849
  end
850
850
 
851
851
  should "raise an error if the @install_path does not exist" do
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 3
9
- version: 0.5.3
8
+ - 4
9
+ version: 0.5.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ian Alexander Wood (i0n)