artoo-raspi 0.7.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33ff012c4ae4e9e15dddf1794dd8e035282193bb
4
- data.tar.gz: 1ed597e05f4f5322d7927ce266992fec155c6c45
3
+ metadata.gz: 0f4b6cb71b41b3ba08025bd7011d6d9a9e0a3c39
4
+ data.tar.gz: 8f56039cb6f9a8fb0a5b47342725c7e82812ae0b
5
5
  SHA512:
6
- metadata.gz: 82ea59838d6c9be4a5742fb0f8c30414fde4814d8b0ebb33c474e7830892e77b5b3854d1a7e8668e807d253a0003f3b5807394096b5d91316c52741ecf352050
7
- data.tar.gz: baee010d98adf44cda47c236d0209e5157f557b9ea0071cf15119027b4987340edd33e68a83cf9c6d4f174e3dd748c39dece8f12581db5e63dd421fb70c6f33f
6
+ metadata.gz: 735736044de7cf976e49a4b8e3d71d388d4011b85ed0703c0e3d91c65b5e1e4bdbfa3a0781e5669901bd813f3fef76d1e88596e707bafea19668dbd88216c90c
7
+ data.tar.gz: ae2ef16b631b822a9ca2ad40aadfea0b82f3970ab158f3ded0d27002e5810bf3db01302bd03a90e6bd94dd4cf566c1e4da4417ba946221c44978ba6181dd3f94
@@ -9,3 +9,6 @@ matrix:
9
9
  allow_failures:
10
10
  - rvm: jruby-1.7.9
11
11
  - rvm: rbx-2.1.1
12
+ before_install:
13
+ - gem update --system 2.4.8
14
+ - gem --version
@@ -1,15 +1,15 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- artoo-raspi (0.7.0)
5
- artoo (>= 1.6.0)
4
+ artoo-raspi (0.7.1)
5
+ artoo (>= 1.8.2)
6
6
  artoo-gpio
7
7
  artoo-i2c
8
8
 
9
9
  GEM
10
10
  remote: http://rubygems.org/
11
11
  specs:
12
- artoo (1.8.1)
12
+ artoo (1.8.2)
13
13
  celluloid (~> 0.16.0)
14
14
  celluloid-io (~> 0.16.0)
15
15
  http (~> 0.6.1)
@@ -19,7 +19,7 @@ GEM
19
19
  reel (~> 0.5.0)
20
20
  robeaux (= 0.4.1)
21
21
  thor (~> 0.19.1)
22
- artoo-gpio (0.4.0)
22
+ artoo-gpio (0.4.1)
23
23
  artoo (>= 1.6.0)
24
24
  artoo-i2c (0.5.0)
25
25
  artoo (>= 1.6.0)
@@ -45,7 +45,7 @@ GEM
45
45
  coderay (~> 1.0)
46
46
  method_source (~> 0.8)
47
47
  slop (~> 3.4)
48
- rake (10.1.1)
48
+ rake (10.5.0)
49
49
  reel (0.5.0)
50
50
  celluloid (>= 0.15.1)
51
51
  celluloid-io (>= 0.15.0)
@@ -53,11 +53,11 @@ GEM
53
53
  http_parser.rb (>= 0.6.0)
54
54
  websocket_parser (>= 0.1.6)
55
55
  robeaux (0.4.1)
56
- slop (3.4.7)
56
+ slop (3.6.0)
57
57
  thor (0.19.1)
58
58
  timers (4.0.4)
59
59
  hitimes
60
- websocket_parser (0.1.6)
60
+ websocket_parser (1.0.0)
61
61
 
62
62
  PLATFORMS
63
63
  ruby
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
21
  s.require_paths = ["lib"]
22
22
 
23
- s.add_runtime_dependency 'artoo', '>= 1.6.0'
23
+ s.add_runtime_dependency 'artoo', '>= 1.8.2'
24
24
  s.add_runtime_dependency 'artoo-gpio'
25
25
  s.add_runtime_dependency 'artoo-i2c'
26
26
  s.add_development_dependency 'minitest', '>= 5.0'
@@ -1,5 +1,5 @@
1
1
  module Artoo
2
2
  module Raspi
3
- VERSION = '0.7.0'
3
+ VERSION = '0.7.1'
4
4
  end
5
5
  end
@@ -44,9 +44,7 @@ module Artoo
44
44
  # Closes connection with device
45
45
  # @return [Boolean]
46
46
  def disconnect
47
- puts "Disconnecting all PWM pins..."
48
47
  release_all_pwm_pins
49
- puts "Disconnecting all Raspi pins..."
50
48
  close_all_raspi_pins
51
49
  super
52
50
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artoo-raspi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ron Evans
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 1.6.0
21
+ version: 1.8.2
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: 1.6.0
28
+ version: 1.8.2
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: artoo-gpio
31
31
  requirement: !ruby/object:Gem::Requirement