calculator_demo 0.1.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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/calculator_demo.rb +7 -0
  3. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9ad1b9e33aff6cc061106da57be728b773ed06b656fb38a444318d985c160538
4
+ data.tar.gz: eb59768f6f0893f84ea9aa8d9df54c781f702097d0720db0653a178c9616b1f3
5
+ SHA512:
6
+ metadata.gz: e397eb9b16572ccfea4559a0c72e5df1728273db671d027e9301e9af99423f029fda1be44c2fb47c7a1d77fd6705d32dd9a35558d882335af7c0a99e8aa847bf
7
+ data.tar.gz: 0caef30150d99f9a1aac0531f0b5b28053e33e45edc57af85acac94c7ba5405eff5af7dd3cd7d5fdbdbf4ed4d3830c5b96fe011a6ea82b1c5a9741fde441408a
@@ -0,0 +1,7 @@
1
+ module CalculatorDemo
2
+ class Calci
3
+ def addition(a,b)
4
+ return a+b
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: calculator_demo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Hasmukh Rathod
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-01-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Learn basics of GEM creation
14
+ email: hasmukh@thinkbiz.co.in
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/calculator_demo.rb
20
+ homepage: https://rubygems.org/gems/calculator_demo
21
+ licenses:
22
+ - MIT
23
+ metadata:
24
+ source_code_uri: https://github.com/hasmukhrathod/calculator_demo.git
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.7.3
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Demo GEM
45
+ test_files: []