mortar 0.8.5 → 0.8.6

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.
@@ -42,8 +42,13 @@ https://pypi.python.org/pypi/virtualenv
42
42
  EOF
43
43
 
44
44
  NO_AWS_KEYS_ERROR_MESSAGE = <<EOF
45
- Please specify your aws access key via environment variable AWS_ACCESS_KEY
46
- and your aws secret key via environment variable AWS_SECRET_KEY"
45
+ Please specify your amazon AWS access key via environment variable AWS_ACCESS_KEY
46
+ and your AWS secret key via environment variable AWS_SECRET_KEY, e.g.:
47
+
48
+ export AWS_ACCESS_KEY="XXXXXXXXXXXX"
49
+ export AWS_SECRET_KEY="XXXXXXXXXXXX"
50
+
51
+ If your script does not need AWS S3 access, you can set these variables to XXXXXXXXXXXX.
47
52
  EOF
48
53
 
49
54
 
@@ -25,11 +25,11 @@ class Mortar::Local::Jython
25
25
 
26
26
  def install_or_update
27
27
  if should_install
28
- action("Installing jython") do
28
+ action("Installing jython to #{local_install_directory_name}") do
29
29
  install
30
30
  end
31
31
  elsif should_update
32
- action("Updating jython") do
32
+ action("Updating jython in #{local_install_directory_name}") do
33
33
  update
34
34
  end
35
35
  end
@@ -98,11 +98,11 @@ class Mortar::Local::Pig
98
98
  def install_or_update()
99
99
  call_install = false
100
100
  if should_do_pig_install?
101
- action "Installing pig" do
101
+ action "Installing pig to #{local_install_directory_name}" do
102
102
  install()
103
103
  end
104
104
  elsif should_do_pig_update?
105
- action "Updating to latest pig" do
105
+ action "Updating to latest pig in #{local_install_directory_name}" do
106
106
  install()
107
107
  end
108
108
  end
@@ -47,11 +47,11 @@ class Mortar::Local::Python
47
47
  def install_or_update_osx
48
48
  @command = "#{local_install_directory}/python/bin/python"
49
49
  if should_do_python_install?
50
- action "Installing python" do
50
+ action "Installing python to #{local_install_directory_name}" do
51
51
  install_osx
52
52
  end
53
53
  elsif should_do_update?
54
- action "Updating to latest python" do
54
+ action "Updating to latest python in #{local_install_directory_name}" do
55
55
  install_osx
56
56
  end
57
57
  end
@@ -16,5 +16,5 @@
16
16
 
17
17
  module Mortar
18
18
  # see http://semver.org/
19
- VERSION = "0.8.5"
19
+ VERSION = "0.8.6"
20
20
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mortar
3
3
  version: !ruby/object:Gem::Version
4
- hash: 53
4
+ hash: 51
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 8
9
- - 5
10
- version: 0.8.5
9
+ - 6
10
+ version: 0.8.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mortar Data
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-06-10 00:00:00 Z
18
+ date: 2013-06-11 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: mortar-api-ruby