artoo 1.6.0 → 1.6.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/artoo/commands/commands.rb +6 -1
- data/lib/artoo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99300043a8e0ea0151c2e11e169e417c3f5695f8
|
|
4
|
+
data.tar.gz: a9e775a2e51c7fc4ee9b2a3b0d6d55c24d2baae9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73914f51e137d73d0a16911469b89d8f614df51c2806aafd339a0a54a06a8268b01021b77529e9fa110d5dfa46b201dc838bd34f89834add8633bf5193ff8b07
|
|
7
|
+
data.tar.gz: d3a6b329bd46dcd87e5ef586de3489e541064723a6961583d7c3a398b9aae8817cbdcb84d93ff50df59077a95eeb512c0f6a64b659f7316e6372a48138f00426
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -77,7 +77,7 @@ SPHEROS.each {|p|
|
|
|
77
77
|
SpheroRobot.work!(robots)
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
Ruby versions supported: Ruby 2.0, Ruby 1.9.3, JRuby 1.7.4+, and Rubinius 2.
|
|
80
|
+
Ruby versions supported: Ruby 2.1, Ruby 2.0, Ruby 1.9.3, JRuby 1.7.4+, and Rubinius 2.1+
|
|
81
81
|
|
|
82
82
|
Rubinius requires 1.9 mode, to install Rubinius in 1.9 mode using rvm
|
|
83
83
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require 'thor'
|
|
2
2
|
require 'thor/group'
|
|
3
|
+
require 'etc'
|
|
3
4
|
|
|
4
5
|
module Artoo
|
|
5
6
|
module Commands
|
|
@@ -12,7 +13,11 @@ module Artoo
|
|
|
12
13
|
end
|
|
13
14
|
|
|
14
15
|
def self.install_dir
|
|
15
|
-
|
|
16
|
+
"#{ install_path }/.artoo/commands"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.install_path
|
|
20
|
+
ENV["GEM_HOME"] || ENV["RBENV_ROOT"] || Dir.home(Etc.getlogin)
|
|
16
21
|
end
|
|
17
22
|
end
|
|
18
23
|
end
|
data/lib/artoo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: artoo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ron Evans
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2014-02-
|
|
15
|
+
date: 2014-02-13 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: celluloid
|