powerstar 0.1.9 → 0.2.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 +4 -4
- data/lib/powerstar/version.rb +1 -1
- data/lib/powerstar.rb +10 -9
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8686ad92d3ba782d3f987cec290043b0747ae6ab5269ece0441335a3f06dfe1
|
4
|
+
data.tar.gz: 39859e7f7fb46cea7b5f5536cb72d82b9477bd995720c55c7c475225622d9411
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de248831f8359ce92b87f0bb5472d5fb890c87f7d889106dd3e54caf9680079689b85bb59b4b8e8ce73f97ab4a7ef16aa19f417cbf31aedfe113b5e4479411b2
|
7
|
+
data.tar.gz: 536c0773312987f996bd766592f329a2c6f4c6e2a06f87840d97e153b5419d9e1f333c7143d5d383cab73f9e1485df558aa01f51845b4328d905a4008054626b
|
data/lib/powerstar/version.rb
CHANGED
data/lib/powerstar.rb
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "powerstar/version"
|
4
|
+
require "./common_data/Ganesh.rb"
|
4
5
|
module Powerstar
|
5
|
-
|
6
|
+
class Error < StandardError; end
|
6
7
|
# Your code goes here...
|
7
8
|
|
8
9
|
# module User < ApplicationRecord
|
@@ -11,12 +12,12 @@ module Powerstar
|
|
11
12
|
# puts "ganesh method is executing"
|
12
13
|
# end
|
13
14
|
# end
|
14
|
-
class Ganesh
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
end
|
21
|
-
end
|
15
|
+
# class Ganesh
|
16
|
+
# def self.ganesh
|
17
|
+
# puts "ganesh"
|
18
|
+
# end
|
19
|
+
# def self.root(a,b)
|
20
|
+
# return a*b
|
21
|
+
# end
|
22
|
+
# end
|
22
23
|
end
|