my_john_deere_api 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e2ae704f57aab2fa5c33972e626c85de1f4c870094f5b4e3807025da0bea6325
4
+ data.tar.gz: 46a6f1d705a307c09829ae49b8df13cc8bdd49f7c5b650c8ea9d2d13b918ca6d
5
+ SHA512:
6
+ metadata.gz: abbd9e17e1ed5c709595de082e120381985aff0f78dfcd836474ad0f0de3fc1481a330484cec14962625bd658f5e89235f2ad5de40546fc247393898121e1e5a
7
+ data.tar.gz: 4cf59f13b1cedf18648871e9e5cc623d0c43f939e0e1a440f006c2e32949bf67f6754090ecf38bfd6d9c4c1e29801f633e7b9e57cf458e6cf4cc5d55ade3a114
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # my\_john\_deer\_api
2
+
3
+ Interact with John Deere's Developer API. More instructions coming soon.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
@@ -0,0 +1,5 @@
1
+ require 'json'
2
+
3
+ module MyJohnDeereApi
4
+ autoload :VERSION, 'my_john_deere_api/version'
5
+ end
@@ -0,0 +1,3 @@
1
+ module MyJohnDeereApi
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,10 @@
1
+ require 'minitest/autorun'
2
+ require 'my_john_deere_api'
3
+
4
+ class MyJohnDeereApiTest < MiniTest::Test
5
+ describe 'VERSION' do
6
+ it 'conforms to the semantic version format' do
7
+ assert_match /^\d+\.\d+\.\d+$/, MyJohnDeereApi::VERSION
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: my_john_deere_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jaime. Bellmyer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-01-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ == My John Deere API
15
+
16
+ This gem interacts with the My John Deere API.
17
+
18
+ WARNING: this is a work in progress. We believe in publish early,
19
+ publish often. Perfection is the enemy of done. Insert third
20
+ cliché here ;)
21
+ email: online@bellmyer.com
22
+ executables: []
23
+ extensions: []
24
+ extra_rdoc_files: []
25
+ files:
26
+ - README.md
27
+ - Rakefile
28
+ - lib/my_john_deere_api.rb
29
+ - lib/my_john_deere_api/version.rb
30
+ - test/test_my_john_deere_api.rb
31
+ homepage: https://github.com/Intellifarm/my_john_deere_api
32
+ licenses:
33
+ - MIT
34
+ metadata: {}
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.0.1
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Interact with John Deere's Developer API
54
+ test_files: []