RLCoreKickstart 0.0.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b361e176107d9728c88e0aa6dda427ad36e57718
4
- data.tar.gz: 8836bba4816bd9d77f6fd409b99fcc6faf0e22b4
2
+ SHA256:
3
+ metadata.gz: 97f18f212bace627cc199709a7638b3637ea41dd6b167e47670ec9a07c7616c9
4
+ data.tar.gz: 9b8e05c3b8934e90dffa0ec85b0e5828c743845484778895006f127d8f299c76
5
5
  SHA512:
6
- metadata.gz: 01bc9395bde8a40380392abc179aa1e94bbf1cf572cb0b41705240795fa1418e3ad901ac6a6ccc098226a1a71505d417eb9a67c5a61e276cabe6757b887957a0
7
- data.tar.gz: 8c6ab22d541b156b8dd145e3e38051990611f8b21116ceb5ac61d095865cac1587f571058bf1a33989c18b7b289b776f0325e093ca02b2657161209a6bef2099
6
+ metadata.gz: 77e16f9d5af820d3846556fa072403c399c9e13f753fc7e485cc7fccb41891da64e37c5ea6a7f7e90ad90cc9008d895ba996175b97f5400842e535b20c29c294
7
+ data.tar.gz: da53c06ec34dce018291b3f29243a9fb3275a8698ed8abe4a9d0b139ee7e180ea4e6e13b9e14d76f1b914b3d1e51083f9bc5ab6c95640db82d458eb56745e632
data/bin/skeleton_rl_core CHANGED
@@ -40,7 +40,7 @@ HEADER
40
40
  1.upto(7) do |num|
41
41
  # `mkdir #{num}wk ; touch #{num}wk/.gitignore`
42
42
  folder_name = "#{num}_week"
43
- Dir.mkdir folder_name unless File.exists?(folder_name)
43
+ Dir.mkdir folder_name unless File.exist?(folder_name)
44
44
  end
45
45
 
46
46
  files_listing = File.open(__dir__ + '/../lib/assets/file_listing.txt', 'r')
@@ -10,7 +10,7 @@
10
10
  2_week/1e_split_a_string
11
11
  2_week/2e_diff_in_outputs
12
12
  2_week/3e_method_leap_year
13
- 2_week/4e_why_output_nil?
13
+ 2_week/4e_why_output_nil
14
14
  2_week/5e_x_=_y
15
15
  2_week/6e_case_c
16
16
  2_week/1c_prompt
@@ -26,7 +26,7 @@
26
26
  3_week/8e_Fizz_Buzz_Instructions_Only!
27
27
  3_week/9e_Reverse_Word_Order
28
28
  3_week/10e_Sum_of_Elements
29
- 3_week/11e_Odd_or_Even?
29
+ 3_week/11e_Odd_or_Even
30
30
  3_week/12e_Who_did_not_attempt_Quiz_1
31
31
  3_week/13e_DRY:_Dont_Repeat_Yourself
32
32
  3_week/14e_sample_questions
@@ -2,13 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "RLCoreKickstart"
5
- spec.version = '0.0.9'
6
- spec.required_ruby_version = '>= 1.9'
5
+ spec.version = '0.2.0'
6
+ spec.required_ruby_version = '>= 3.1'
7
7
  spec.authors = ["Victor Goff"]
8
8
  spec.email = ["keeperotphones@gmail.com"]
9
- spec.summary = %q{Provide some basic tools for the Ruby course at http://rubylearning.org}
9
+ spec.summary = %q{Provide some basic tools for the Ruby course at formerly at http://rubylearning.org}
10
10
  spec.description = %Q{Prepares a set of folders for the RubyLearning Core Ruby Course, install by issuing command "gem install #{spec.name}"}
11
- spec.homepage = "http://rubylearning.org"
11
+ spec.homepage = "https://rubylearning.github.io"
12
12
  spec.license = "MIT"
13
13
 
14
14
  spec.files = `git ls-files -z`.split("\x0")
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.post_install_message = "
18
18
  You will want to create your course folder, change directory to it,
19
19
  and then run skeleton_rl_core to have it build the course skeleton.
20
-
20
+
21
21
  Thank you for taking the course!
22
- copyright 2013-2014"
22
+ copyright 2013-2023"
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RLCoreKickstart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Goff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-15 00:00:00.000000000 Z
11
+ date: 2023-03-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Prepares a set of folders for the RubyLearning Core Ruby Course, install
14
14
  by issuing command "gem install RLCoreKickstart"
@@ -31,13 +31,17 @@ files:
31
31
  - lib/rlcorekickstart.rb
32
32
  - lib/rlcorekickstart/evaluate_me.rb
33
33
  - rlcorecoursekickstarter.gemspec
34
- homepage: http://rubylearning.org
34
+ homepage: https://rubylearning.github.io
35
35
  licenses:
36
36
  - MIT
37
37
  metadata: {}
38
- post_install_message: "\n You will want to create your course folder, change directory
39
- to it,\n and then run skeleton_rl_core to have it build the course skeleton.\n
40
- \ \n Thank you for taking the course!\n copyright 2013-2014"
38
+ post_install_message: |2-
39
+
40
+ You will want to create your course folder, change directory to it,
41
+ and then run skeleton_rl_core to have it build the course skeleton.
42
+
43
+ Thank you for taking the course!
44
+ copyright 2013-2023
41
45
  rdoc_options: []
42
46
  require_paths:
43
47
  - lib
@@ -45,17 +49,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
45
49
  requirements:
46
50
  - - ">="
47
51
  - !ruby/object:Gem::Version
48
- version: '1.9'
52
+ version: '3.1'
49
53
  required_rubygems_version: !ruby/object:Gem::Requirement
50
54
  requirements:
51
55
  - - ">="
52
56
  - !ruby/object:Gem::Version
53
57
  version: '0'
54
58
  requirements: []
55
- rubyforge_project:
56
- rubygems_version: 2.4.4
59
+ rubygems_version: 3.4.8
57
60
  signing_key:
58
61
  specification_version: 4
59
- summary: Provide some basic tools for the Ruby course at http://rubylearning.org
62
+ summary: Provide some basic tools for the Ruby course at formerly at http://rubylearning.org
60
63
  test_files: []
61
- has_rdoc: