jishan_fast_track_gem 0.1.17 → 0.1.18

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: abd81f5228a282fbdef3de4815bf6e8d778dc0a9ade0cb6c030e6a5226c061ea
4
- data.tar.gz: afb1c85bc7d0b8e9fb640e727ff2d6d2669630cb6e746aa5f332382f422a80e4
3
+ metadata.gz: 438fcdc29d2bb7a118d739e0aa8aacc3fefe4f3f0d16294a4ea2ddccdabcb273
4
+ data.tar.gz: 77303a646042c3c464801db5500a157d7404830d214a926bd99b16d1f77b3b60
5
5
  SHA512:
6
- metadata.gz: 33f31847502b47c97ae6ad82983c7028a4516440c12f9b8e6aee711634e67f160424fbdbc0b0310cc26642a6c62e32a39ea287f3d61c22a1346b5ad888feb43e
7
- data.tar.gz: ded496287f6da6fb91a63e658781c53aef21f35c2f7cb079263814e01b95470e2f4b78105f2d7485f3460b78c833128d15b50c9329ddb9c794c38369da4011c4
6
+ metadata.gz: d2c08ad042d88deb81c37ff5669c34f0d6b5043a6fd19ec64b828a1a6c2cd28265fa7b81f2c8a92cab10e80629fa3cda1b51c3ddcc40d8a9ae1a1bd1c611291a
7
+ data.tar.gz: 1144ee0c8979b6e934a74c83ced3e959d1f8b370eecf50055d13bfe4d71b8ebbfd90fd00cc32b2c871125802d582cccfb5c4f9d996e99e14448fa488725a9f25
@@ -4,7 +4,7 @@ require 'colorize'
4
4
  require 'gemoji'
5
5
 
6
6
 
7
- class Eligibility_check
7
+ class EligibilityCheck
8
8
  def initialize(name)
9
9
  @name = name
10
10
  @answers =[]
data/lib/files_check.rb CHANGED
@@ -3,7 +3,7 @@ require "csv"
3
3
  require "colorize"
4
4
  require "table_print"
5
5
 
6
- class Files_check
6
+ class FilesCheck
7
7
  attr_reader :file_list
8
8
  def initialize(name)
9
9
  @name = name
@@ -1,3 +1,3 @@
1
1
  module JishanFastTrackGem
2
- VERSION = "0.1.17"
2
+ VERSION = "0.1.18"
3
3
  end
@@ -1,20 +1,17 @@
1
- # require "jishan_fast_track_gem/version"
2
1
  require_relative 'rebate_calculator'
3
2
  require_relative 'files_check'
4
3
  require_relative 'eligibility_check'
5
4
  require_relative 'manage_list'
6
5
 
7
- # write the intro
8
- # Help file includes *comprehensive* instructions which *accurately* describe: steps to install the application; dependencies required by the application; system/hardware requirements; features of the application.
9
- john = Eligibility_check.new("John")
6
+ john = EligibilityCheck.new("John")
10
7
  john.instruction
11
- john_files = Files_check.new("John Files")
8
+ john_files = FilesCheck.new("John Files")
12
9
  john_files.instruction
13
10
 
14
11
 
15
12
 
16
- list_zone_1 = Manage_list.new("zone 1")
17
- list_zone_2 = Manage_list.new("zone 2")
13
+ list_zone_1 = ManageList.new("zone 1")
14
+ list_zone_2 = ManageList.new("zone 2")
18
15
 
19
16
  list_zone_1.add_applicant("John")
20
17
  list_zone_1.add_applicant("Sab")
@@ -26,9 +23,9 @@ list_zone_2.remove_applicant("Peppy")
26
23
  p list_zone_1.list_detail
27
24
  p list_zone_2.list_detail
28
25
 
29
- p Manage_list.display_processing_number
26
+ p ManageList.display_processing_number
30
27
 
31
- john_rebate = Rebate_calculator.new
28
+ john_rebate = RebateCalculator.new
32
29
  john_rebate.instruction
33
30
 
34
31
 
data/lib/manage_list.rb CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- class Manage_list
2
+ class ManageList
3
3
  attr_reader :list_detail
4
4
  @@processing_number = 0
5
5
  def initialize(name)
@@ -2,7 +2,7 @@ require 'csv'
2
2
  require 'colorize'
3
3
 
4
4
 
5
- class Rebate_calculator
5
+ class RebateCalculator
6
6
  def initialize
7
7
  @postcode = 0
8
8
  @kw = 0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jishan_fast_track_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.17
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jishan_Lu