ota 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 10935a8a43a50e5a70579e5571705d62fbf89bf1
4
+ data.tar.gz: 2bb7c9d8b665b87567d94c9e27f15f938618ec9c
5
+ SHA512:
6
+ metadata.gz: 3b8b81e426668ed2bbd70138cfb96fce1b2c0fdb738c59f427a1934f86735ed37a522118085fad90d60fb59ed2ade80c871340a0c2f22676694434a7386bb4af
7
+ data.tar.gz: d9adb5e720c13337073becc3e9d7c023e46dd84d0880e879663cc24dec9d6b1842ecd4e7addaf55c595b1a99192b5b40f305711fe0b549145474de1da7d04edb
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # ota-ruby
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+ module OTA
3
+ VERSION = '0.0.0'.freeze
4
+ end
data/lib/ota.rb ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ require 'ota/version'
3
+
4
+ # Over-The-Air
5
+ module OTA
6
+ end
data/ota.gemspec ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ota/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'ota'
8
+ spec.version = OTA::VERSION
9
+ spec.authors = ['Willie Cotton']
10
+ spec.email = ['williamcotton@gmail.com']
11
+ spec.summary = 'ota-ruby'
12
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
13
+ f.match(%r{^(test|spec|features)/})
14
+ end
15
+ spec.require_paths = ['lib']
16
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ota
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Willie Cotton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - williamcotton@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - README.md
22
+ - lib/ota.rb
23
+ - lib/ota/version.rb
24
+ - ota.gemspec
25
+ homepage:
26
+ licenses: []
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.2.5
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: ota-ruby
48
+ test_files: []