daslabs 0.14.0 → 0.15.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6aa0f82c335dbe5731be2d8b2c858f6eba44eeb93116e4867827bd6be481473e
4
- data.tar.gz: 204e6c9783354b65415fc1f4a39b9282239055328fa4828fa232121e610dfba7
3
+ metadata.gz: efebc56ceb9525cabb16d13e1475d85fe4a6ac30a905c3e779cbfcef54079e01
4
+ data.tar.gz: 50b41a42ff0656903a4d55fda51289ea1abe3486129685f2c2acc6968da96cbe
5
5
  SHA512:
6
- metadata.gz: b484e0382f1c341a831d2a37796c858cc039809ac27d01e719f48ee6ba68f7f48b340e03f9bc04fa744bc0f8c30b6b075917a4fcf38de36daacb6b5b7983df84
7
- data.tar.gz: 4fcb08f8d990f91841d40965c0ce16c14fda641d70f9bfaefe34d174ba510e55fef7e5be8036de8a6046219d9b900633cbcd60e7ebfca527fd0c7887a3703617
6
+ metadata.gz: afe243241d4b90c284349f9664b9ef3b6683157d5a6d088258ae678639f43272360124098f2036fc352ed0b9f3754ea0588775f023a6e7aab76c555eb653387a
7
+ data.tar.gz: f1ec4e1d0c2845b59685f9f5fa7da4039478933f2c9998e70a832f61ceedecc7103a9d302004007e2049bc5ec4626738a62750a06cfabd771ca2f823f5c235ab
@@ -2,26 +2,28 @@ require "daslabs/version"
2
2
  require "daslabs/baseband"
3
3
 
4
4
  module DasLabs
5
- class DasLabsCentral
6
- def self.warpspeed(n = "Default")
7
- baseband = Baseband
8
- Baseband.name(n)
9
- end
5
+ def self.bootstrapweb(n = "DefaultName")
6
+
7
+ baseband = Baseband
8
+ Baseband.bootstrapweb(n)
9
+ end
10
+
11
+ def self.bootstrapandroid(n = "DefaultName")
12
+
13
+ baseband = Baseband
14
+ Baseband.bootstrapandroid(n)
15
+ end
16
+
17
+
18
+ def self.bootstrapios(n = "DefaultName")
19
+
20
+ baseband = Baseband
21
+ Baseband.bootstrapios(n)
22
+ end
10
23
 
11
- def self.bootstrapweb(n = "Default")
12
- baseband = Baseband
13
- Baseband.bootstrapweb(n)
14
- end
15
-
16
- def self.bootstrapandroid(n = "Default")
17
- baseband = Baseband
18
- Baseband.bootstrapandroid(n)
19
- end
20
-
21
-
22
- def self.bootstrapios(n = "Default")
23
- baseband = Baseband
24
- Baseband.bootstrapios(n)
25
- end
24
+ def self.usage(n = "DefaultName")
25
+
26
+ baseband = Baseband
27
+ Baseband.usage(n)
26
28
  end
27
29
  end
@@ -55,5 +55,9 @@ class Baseband
55
55
  puts "Writing ios project to : ", n
56
56
  end
57
57
 
58
+ def self.usage(n = "Baseband")
59
+ puts "Usage is as follows | bootstrapweb | bootstrapandroid | bootstrapios |", n
60
+ end
61
+
58
62
  end
59
63
 
@@ -1,3 +1,3 @@
1
1
  module Daslabs
2
- VERSION = "0.14.0"
2
+ VERSION = "0.15.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daslabs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arunabh Das