ku 0.0.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.
Files changed (9) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/Gemfile +6 -0
  4. data/Rakefile +1 -0
  5. data/bin/ku +10 -0
  6. data/ku.gemspec +20 -0
  7. data/ku.rb +0 -0
  8. data/lib/ku/version.rb +3 -0
  9. metadata +52 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 935d23b2ecb9c63b64611b7d83dd994e2fb1bf56
4
+ data.tar.gz: e56447304356a787d1ea6a6721c0e73a9ba055ee
5
+ SHA512:
6
+ metadata.gz: f5b19666cdcae809f276251ca58a88d7919763326240230e24649bb01ba8692953a1b2369c8efc3a8bc579ab9bead4a492bf76f5575c5fb0f1a8bd43a0e1f325
7
+ data.tar.gz: d75de705ee064427e679970600aa31ad66027283561818cb315b9d8d2890a9d2a32357c6408d911dec66b0e7ef02e7638107accb6c32d10ed9d4946d3a956838
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.sw[op]
19
+ .DS_Store
20
+ .rspec
21
+ .bin/
22
+ vendor/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ group :development, :test do
5
+ gem "rake"
6
+ end
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
data/bin/ku ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ Signal.trap("INT") { exit 1 }
4
+
5
+ $LOAD_PATH.push File.expand_path("../../lib", __FILE__)
6
+ $stdout.sync = true
7
+
8
+ require "ku"
9
+
10
+ Encoding.default_external = Encoding::UTF_8
@@ -0,0 +1,20 @@
1
+ require File.expand_path('../lib/ku/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.authors = ["Lamont Granquist"]
5
+ s.email = ["lamont@scriptkiddie.org"]
6
+ s.description = %q{Kerbal Updater}
7
+ s.summary = s.description
8
+ s.homepage = "https://github.com/lamont-granquist/ku"
9
+ s.license = "Apache 2.0"
10
+
11
+ s.files = `git ls-files`.split($\)
12
+ s.executables = Array.new
13
+ s.test_files = s.files.grep(%r{^(spec)/})
14
+ s.name = "ku"
15
+ s.require_paths = ["lib"]
16
+ s.version = Ku::VERSION
17
+ s.required_ruby_version = ">= 2.2.0"
18
+
19
+ #s.add_dependency 'varia_model', '~> 0.4.0'
20
+ end
data/ku.rb ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ module Ku
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ku
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lamont Granquist
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-15 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Kerbal Updater
14
+ email:
15
+ - lamont@scriptkiddie.org
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - Rakefile
24
+ - bin/ku
25
+ - ku.gemspec
26
+ - ku.rb
27
+ - lib/ku/version.rb
28
+ homepage: https://github.com/lamont-granquist/ku
29
+ licenses:
30
+ - Apache 2.0
31
+ metadata: {}
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.2.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubyforge_project:
48
+ rubygems_version: 2.4.8
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Kerbal Updater
52
+ test_files: []