daslabs 0.15.0 → 0.16.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: efebc56ceb9525cabb16d13e1475d85fe4a6ac30a905c3e779cbfcef54079e01
4
- data.tar.gz: 50b41a42ff0656903a4d55fda51289ea1abe3486129685f2c2acc6968da96cbe
3
+ metadata.gz: 021a290691dc0d6d3f1fa37d1166cc90da73100995ea181742861ea0fce500c6
4
+ data.tar.gz: d4b5bc3292dc69e84efcf80d1c137156808d8d60124b15b83903d5faf9943f7a
5
5
  SHA512:
6
- metadata.gz: afe243241d4b90c284349f9664b9ef3b6683157d5a6d088258ae678639f43272360124098f2036fc352ed0b9f3754ea0588775f023a6e7aab76c555eb653387a
7
- data.tar.gz: f1ec4e1d0c2845b59685f9f5fa7da4039478933f2c9998e70a832f61ceedecc7103a9d302004007e2049bc5ec4626738a62750a06cfabd771ca2f823f5c235ab
6
+ metadata.gz: 486c9534197c5b46b80ff1fd601520ce13e508f32a925a6598ece81f25cc427a2e3d1ad53924efe9f17b412ec1443a8163c7049fcf557cd77471de2168cb9915
7
+ data.tar.gz: 14173859fa62a03d5c93e066f44f1fe7a43eb34664df84de8baa9f0b9181a187dc6d37d8efd3753580b18a3eb4422f6bbf01de7fb7df0c47b963d17f1c7e8968
@@ -3,4 +3,4 @@
3
3
  require 'daslabs'
4
4
 
5
5
  daslabscentral = DasLabs::DasLabsCentral.new
6
- daslabscentral.warpspeed
6
+ daslabscentral.usage
@@ -2,28 +2,32 @@ require "daslabs/version"
2
2
  require "daslabs/baseband"
3
3
 
4
4
  module DasLabs
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
5
 
18
- def self.bootstrapios(n = "DefaultName")
6
+ class DasLabsCentral
7
+ def self.bootstrapweb(n = "DefaultName")
19
8
 
20
- baseband = Baseband
21
- Baseband.bootstrapios(n)
9
+ baseband = Baseband
10
+ Baseband.bootstrapweb(n)
11
+ end
12
+
13
+ def self.bootstrapandroid(n = "DefaultName")
14
+
15
+ baseband = Baseband
16
+ Baseband.bootstrapandroid(n)
17
+ end
18
+
19
+
20
+ def self.bootstrapios(n = "DefaultName")
21
+
22
+ baseband = Baseband
23
+ Baseband.bootstrapios(n)
24
+ end
25
+
26
+ def self.usage(n = "DefaultName")
27
+
28
+ baseband = Baseband
29
+ Baseband.usage(n)
30
+ end
22
31
  end
23
32
 
24
- def self.usage(n = "DefaultName")
25
-
26
- baseband = Baseband
27
- Baseband.usage(n)
28
- end
29
33
  end
@@ -1,3 +1,3 @@
1
1
  module Daslabs
2
- VERSION = "0.15.0"
2
+ VERSION = "0.16.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.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arunabh Das