xapp 0.1.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 +7 -0
- data/README.MD +1 -0
- data/bin/xapp +12 -0
- data/lib/project-template.zip +0 -0
- data/lib/xapp.rb +11 -0
- data/xapp.gemspec +13 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e4630e516a009b19a6c002fc1778b4c59989547e
|
|
4
|
+
data.tar.gz: 8543f25108e806d4f4b4f7221f59f6243b51b396
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6466c51aa0d7b6907363410bc8046226b01665a49ac329374c30da3e24fdfb65d3822359b3711dd697771c8c64b2c3c67597f5e553424e4bdb5f1d1a22e22f0e
|
|
7
|
+
data.tar.gz: c8a938b8f3b0128893416a5fe8d54fa8fd2aaa85cc1ca89c1663952bb917589661185cd3a79ff38266ac1186173449c40b28fd202502a32784118f44d20dd9fe
|
data/README.MD
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Router-Coordinator-Model-Observer Project Template
|
data/bin/xapp
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'xapp'
|
|
3
|
+
|
|
4
|
+
if ARGV[0] == 'init' then
|
|
5
|
+
XApp.init_template()
|
|
6
|
+
elsif ARGV[0] == '-v' then
|
|
7
|
+
puts "XApp Version: " + XApp::VERSION
|
|
8
|
+
elsif ARGV[0] == nil then
|
|
9
|
+
puts "No argument provided. Try 'xapp init'."
|
|
10
|
+
else
|
|
11
|
+
puts "Unrecognised argument. Try 'xapp init'."
|
|
12
|
+
end
|
|
Binary file
|
data/lib/xapp.rb
ADDED
data/xapp.gemspec
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = 'xapp'
|
|
3
|
+
s.version = '0.1.1'
|
|
4
|
+
s.email = 'reece@hubr.io'
|
|
5
|
+
s.authors = ['Reece Como']
|
|
6
|
+
s.date = %q{2019-01-26}
|
|
7
|
+
s.summary = %q{xapp is a helper tool for iOS dev}
|
|
8
|
+
|
|
9
|
+
s.files = `git ls-files`.split($/)
|
|
10
|
+
s.executables << 'xapp'
|
|
11
|
+
|
|
12
|
+
s.require_paths = ["lib"]
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: xapp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Reece Como
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-01-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description:
|
|
14
|
+
email: reece@hubr.io
|
|
15
|
+
executables:
|
|
16
|
+
- xapp
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.MD
|
|
21
|
+
- bin/xapp
|
|
22
|
+
- lib/project-template.zip
|
|
23
|
+
- lib/xapp.rb
|
|
24
|
+
- xapp.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.5.2.3
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: xapp is a helper tool for iOS dev
|
|
48
|
+
test_files: []
|