RLCoreKickstart 0.1.0 → 0.2.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
- SHA1:
3
- metadata.gz: f8012885021ed94cc1faa407ac87d1fff89c1078
4
- data.tar.gz: 205173f4fd7b52a7702639110900b62d439b6b97
2
+ SHA256:
3
+ metadata.gz: 97f18f212bace627cc199709a7638b3637ea41dd6b167e47670ec9a07c7616c9
4
+ data.tar.gz: 9b8e05c3b8934e90dffa0ec85b0e5828c743845484778895006f127d8f299c76
5
5
  SHA512:
6
- metadata.gz: ae72ec149d88791d07a43f298b9668bf8f51a5fe4aecf4b56b07012a87cee494dfc89d35ed37eb9b39bcdfc1f313cbc04653218f28a0e1617d143dd5d1c42ae0
7
- data.tar.gz: 6b7b6bfb8ee728f02ba39f0e2bc19f71145c3021aca78c2076f965b6f95aabb72e038af6c158cb8b8740caf871bfc44ebb01b4485c5b4a6c4e35ea0eec5af0cb
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')
@@ -2,13 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "RLCoreKickstart"
5
- spec.version = '0.1.0'
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")
@@ -19,5 +19,5 @@ Gem::Specification.new do |spec|
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.1.0
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: 2016-03-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,7 +31,7 @@ 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: {}
@@ -41,7 +41,7 @@ post_install_message: |2-
41
41
  and then run skeleton_rl_core to have it build the course skeleton.
42
42
 
43
43
  Thank you for taking the course!
44
- copyright 2013-2014
44
+ copyright 2013-2023
45
45
  rdoc_options: []
46
46
  require_paths:
47
47
  - lib
@@ -49,16 +49,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: '1.9'
52
+ version: '3.1'
53
53
  required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - ">="
56
56
  - !ruby/object:Gem::Version
57
57
  version: '0'
58
58
  requirements: []
59
- rubyforge_project:
60
- rubygems_version: 2.4.8
59
+ rubygems_version: 3.4.8
61
60
  signing_key:
62
61
  specification_version: 4
63
- 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
64
63
  test_files: []