reading_assignments 0.1.4 → 0.1.5
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/README.md +25 -23
- data/lib/mentor_group.rb +0 -4
- data/lib/reading_assignments/version.rb +1 -1
- data/members.yaml +8 -0
- data/reading_assignments.gemspec +2 -2
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7219c134a18c681c390ef7337eb7ed85d4a40de8
|
4
|
+
data.tar.gz: dd24b7183e557011ab6aadba89446220a247336b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0195c38aff58e5e3a4bc612bc6951c5069c05fa1bcef5f9f1b07d6ffc76a99dd1d511640e577035d0fae15c7602a06247274b550e24cedb5a1aebc86d6041916
|
7
|
+
data.tar.gz: 13d9ed91413c7add440bdec52538832c468ad13afaa2f226b57e8cf242bcb255e698de3ff8d3baf23c7c3e1065cb99f31656052a147e408e7e10c92abbb13656
|
data/README.md
CHANGED
@@ -1,38 +1,40 @@
|
|
1
|
-
#
|
1
|
+
# Reading Assignments Gem
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
This gem allows you to assign your readings to your mentees. As an Experience
|
4
|
+
Engineer at Launch, I'd find myself spending unnecessary energy assigning
|
5
|
+
students to readings in the morning. Instead of having to choose people every
|
6
|
+
morning, I wanted a tool to automate the process and just make my morning a
|
7
|
+
_little_ bit easier.
|
6
8
|
|
7
9
|
## Installation
|
10
|
+
You can install the gem simply by executing the command:
|
8
11
|
|
9
|
-
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'reading_assignments'
|
12
|
+
```
|
13
|
+
$ gem install reading_assignments
|
13
14
|
```
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install reading_assignments
|
22
|
-
|
23
|
-
## Usage
|
16
|
+
In order to use the reading_assignments gem, you simply have to run the command:
|
24
17
|
|
25
|
-
|
18
|
+
```
|
19
|
+
$ reading_assignments
|
20
|
+
```
|
26
21
|
|
27
|
-
|
22
|
+
This gem has an executable script, so you can run it from anywhere. Upon running
|
23
|
+
this command, you'll be asked to setup your group and given three options on
|
24
|
+
how to randomize your selection:
|
28
25
|
|
29
|
-
|
26
|
+
* Number: uses this number to seed the random generator
|
27
|
+
* String: converts the string to a number and uses that as the seed
|
28
|
+
* Random: no seed number, just uses the random generator
|
30
29
|
|
31
|
-
|
30
|
+
Following that you will be asked how many articles you need to assign and you
|
31
|
+
should be able to see your assignments!
|
32
32
|
|
33
|
-
|
33
|
+
Upon using the gem again, you'll have the option to keep your group as is, or
|
34
|
+
to create a new group to select from. This will be especially useful for EEs who
|
35
|
+
cover multiple mentor groups.
|
34
36
|
|
35
|
-
|
37
|
+
Enjoy and hopefully this will make your morning just a little bit easier!
|
36
38
|
|
37
39
|
## License
|
38
40
|
|
data/lib/mentor_group.rb
CHANGED
data/members.yaml
CHANGED
data/reading_assignments.gemspec
CHANGED
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["michaelgt04@gmail.com\n"]
|
11
11
|
|
12
12
|
spec.summary = "Assign Launch Readings"
|
13
|
-
spec.description = "You can use this gem to assign your readings to your mentees"
|
14
|
-
spec.homepage = "https://github.com/michaelgt04/
|
13
|
+
spec.description = "You can use this gem to assign your readings to your mentees. You have multiple different ways to select the reading. It should make your morning a little easier!"
|
14
|
+
spec.homepage = "https://github.com/michaelgt04/reading_assignments"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reading_assignments
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Thomson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,7 +66,9 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description: You can use this gem to assign your readings to your mentees
|
69
|
+
description: You can use this gem to assign your readings to your mentees. You have
|
70
|
+
multiple different ways to select the reading. It should make your morning a little
|
71
|
+
easier!
|
70
72
|
email:
|
71
73
|
- 'michaelgt04@gmail.com
|
72
74
|
|
@@ -95,7 +97,7 @@ files:
|
|
95
97
|
- lib/student_randomizer.rb
|
96
98
|
- members.yaml
|
97
99
|
- reading_assignments.gemspec
|
98
|
-
homepage: https://github.com/michaelgt04/
|
100
|
+
homepage: https://github.com/michaelgt04/reading_assignments
|
99
101
|
licenses:
|
100
102
|
- MIT
|
101
103
|
metadata: {}
|