artoo-spark 0.1.0 → 0.2.0

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: 1d98e9fe1cfaaf67fe06a462d3802e114a763cfc
4
- data.tar.gz: e9be753b3535f5aab83ac995225e1120bef14d61
3
+ metadata.gz: f33bee9433c59ea47a9de5d5ae689d6ea5050927
4
+ data.tar.gz: b41351e4996b8e2b0c90eacf70fac3c34df5d1d2
5
5
  SHA512:
6
- metadata.gz: bc0cc92b544731c63d141cb72641acbcc213f278371daed056ade767eacd7ae0adfa80120c27089baf3f957790508091582a35c5e381a6e2f0879de9ae2aa10a
7
- data.tar.gz: c378e218b61549cda3e9eba97646a9f2c43620e1b5985b536431a475e52cfcca7403c90c3146cac9db6397f24012b65e3cd1ee660e35f8b8c526df5c7b356b33
6
+ metadata.gz: d657025f5cb8f96094718ac69697dd0fd93aeec536bee6192ef53bdf73900bedf15b478e00f8cac7445ed4f510764e6b538e0635caf6a8061c22a69bd51535c6
7
+ data.tar.gz: 7c34107b758a9b1491e59ee7fd44adec777a51569160f9ed99681712ff7008a27b4ba8ea9fdb5e1d3427c2b270db8c93397a3295ca4a8b001aa83b1a1e666a9c
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - 2.0.0
5
+ - 1.9.3
6
+ - jruby-1.7.9
7
+ - rbx-2.1.1
8
+ matrix:
9
+ allow_failures:
10
+ - rvm: jruby-1.7.9
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 The Hybrid Group
1
+ Copyright (c) 2013-2014 The Hybrid Group
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -35,3 +35,28 @@ end
35
35
  ## Connecting to Spark
36
36
 
37
37
  Once your Spark is connected via Wifi, you're done. It should keep itself connected, and your Artoo program should be able to connect to it via the Internet, using the access token that Spark has given you.
38
+
39
+ ## Documentation
40
+
41
+ Check out our [documentation](http://artoo.io/documentation/) for lots of information about how to use Artoo.
42
+
43
+ ## IRC
44
+
45
+ Need more help? Just want to say "Hello"? Come visit us on IRC freenode #artoo
46
+
47
+ ## Contributing
48
+
49
+ * All patches must be provided under the Apache 2.0 License
50
+ * Please use the -s option in git to "sign off" that the commit is your work and you are providing it under the Apache 2.0 License
51
+ * Submit a Github Pull Request to the appropriate branch and ideally discuss the changes with us in IRC.
52
+ * We will look at the patch, test it out, and give you feedback.
53
+ * Avoid doing minor whitespace changes, renamings, etc. along with merged content. These will be done by the maintainers from time to time but they can complicate merges and should be done seperately.
54
+ * Take care to maintain the existing coding style.
55
+ * Add unit tests for any new or changed functionality.
56
+ * All pull requests should be "fast forward"
57
+ * If there are commits after yours use “git rebase -i <new_head_branch>”
58
+ * If you have local changes you may need to use “git stash”
59
+ * For git help see [progit](http://git-scm.com/book) which is an awesome (and free) book on git
60
+
61
+
62
+ (c) 2013-2014 The Hybrid Group
@@ -20,7 +20,8 @@ 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.4.1'
23
+ s.add_runtime_dependency 'artoo', '>= 1.6.0'
24
+ s.add_runtime_dependency 'artoo-gpio'
24
25
  s.add_runtime_dependency 'http'
25
26
  s.add_development_dependency 'minitest', '>= 5.0'
26
27
  s.add_development_dependency 'minitest-happy'
@@ -1,5 +1,5 @@
1
1
  module Artoo
2
2
  module Spark
3
- VERSION = '0.1.0'
3
+ VERSION = '0.2.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,83 +1,97 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artoo-spark
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ron Evans
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-06 00:00:00.000000000 Z
11
+ date: 2014-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: artoo
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.4.1
19
+ version: 1.6.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.4.1
26
+ version: 1.6.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: artoo-gpio
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: http
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
- - - '>='
45
+ - - ">="
32
46
  - !ruby/object:Gem::Version
33
47
  version: '0'
34
48
  type: :runtime
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
- - - '>='
52
+ - - ">="
39
53
  - !ruby/object:Gem::Version
40
54
  version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: minitest
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
- - - '>='
59
+ - - ">="
46
60
  - !ruby/object:Gem::Version
47
61
  version: '5.0'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
- - - '>='
66
+ - - ">="
53
67
  - !ruby/object:Gem::Version
54
68
  version: '5.0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: minitest-happy
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - '>='
73
+ - - ">="
60
74
  - !ruby/object:Gem::Version
61
75
  version: '0'
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - '>='
80
+ - - ">="
67
81
  - !ruby/object:Gem::Version
68
82
  version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: mocha
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
- - - '>='
87
+ - - ">="
74
88
  - !ruby/object:Gem::Version
75
89
  version: 0.14.0
76
90
  type: :development
77
91
  prerelease: false
78
92
  version_requirements: !ruby/object:Gem::Requirement
79
93
  requirements:
80
- - - '>='
94
+ - - ">="
81
95
  - !ruby/object:Gem::Version
82
96
  version: 0.14.0
83
97
  description: Artoo adaptor for Spark
@@ -87,6 +101,7 @@ executables: []
87
101
  extensions: []
88
102
  extra_rdoc_files: []
89
103
  files:
104
+ - ".travis.yml"
90
105
  - Gemfile
91
106
  - LICENSE
92
107
  - README.md
@@ -108,17 +123,17 @@ require_paths:
108
123
  - lib
109
124
  required_ruby_version: !ruby/object:Gem::Requirement
110
125
  requirements:
111
- - - '>='
126
+ - - ">="
112
127
  - !ruby/object:Gem::Version
113
128
  version: '0'
114
129
  required_rubygems_version: !ruby/object:Gem::Requirement
115
130
  requirements:
116
- - - '>='
131
+ - - ">="
117
132
  - !ruby/object:Gem::Version
118
133
  version: '0'
119
134
  requirements: []
120
135
  rubyforge_project: artoo-spark
121
- rubygems_version: 2.0.3
136
+ rubygems_version: 2.2.1
122
137
  signing_key:
123
138
  specification_version: 4
124
139
  summary: Artoo adaptor for Spark