tog_caesar 0.1.0 → 0.1.1
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 +10 -4
- data/bin/caesar +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: defe4e0f625e3a4fc86553ff6758b90a8f09800df9a64b3861b3424071978591
|
4
|
+
data.tar.gz: 10a33519fd6b53ca6542fc40b4c96c5e5f2c1f092bd2d9cc30e0ce1bd9579efb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8130b88ec36323c1b719817dbbdea75ee5d24bcd85e67e7524702e64fcfe2b2d279f1e4823430773ad4251b52f0e5996207de99f95c22aaf30ba371be4f90fe2
|
7
|
+
data.tar.gz: b7da9b717e0fa887ad6b1437ef4f2182128c8baf129a9bdfd52e1e19b1152f3e82be46d6d166634d7ad0d842b552a4cd8d3d7455a7c163b4ceaf7a5030c4edc4
|
data/README.md
CHANGED
@@ -2,22 +2,28 @@
|
|
2
2
|
|
3
3
|
[Project Link](https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-programming/lessons/caesar-cipher)
|
4
4
|
|
5
|
+
## Build the container
|
6
|
+
|
7
|
+
```sh
|
8
|
+
docker build . -t caesar
|
9
|
+
```
|
10
|
+
|
5
11
|
## Run the binary
|
6
12
|
|
7
13
|
```sh
|
8
|
-
bin/caesar "
|
14
|
+
docker run caesar bin/caesar "my message" 5
|
9
15
|
```
|
10
16
|
|
11
17
|
## Run the tests
|
12
18
|
|
13
19
|
```sh
|
14
|
-
|
20
|
+
docker run caesar rspec
|
15
21
|
```
|
16
22
|
|
17
23
|
## Use the library
|
18
24
|
|
19
25
|
```ruby
|
20
|
-
Caesar.cipher("
|
26
|
+
Caesar.cipher("my message", 5)
|
21
27
|
```
|
22
28
|
|
23
29
|
## Use the gem
|
@@ -35,5 +41,5 @@ gem 'tog_caesar'
|
|
35
41
|
```ruby
|
36
42
|
require 'tog_caesar'
|
37
43
|
|
38
|
-
Caesar.cipher("
|
44
|
+
Caesar.cipher("my message", 5)
|
39
45
|
```
|
data/bin/caesar
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tog_caesar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Johnson
|
@@ -29,22 +29,28 @@ description: |-
|
|
29
29
|
|
30
30
|
[Project Link](https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-programming/lessons/caesar-cipher)
|
31
31
|
|
32
|
+
## Build the container
|
33
|
+
|
34
|
+
```sh
|
35
|
+
docker build . -t caesar
|
36
|
+
```
|
37
|
+
|
32
38
|
## Run the binary
|
33
39
|
|
34
40
|
```sh
|
35
|
-
bin/caesar "
|
41
|
+
docker run caesar bin/caesar "my message" 5
|
36
42
|
```
|
37
43
|
|
38
44
|
## Run the tests
|
39
45
|
|
40
46
|
```sh
|
41
|
-
|
47
|
+
docker run caesar rspec
|
42
48
|
```
|
43
49
|
|
44
50
|
## Use the library
|
45
51
|
|
46
52
|
```ruby
|
47
|
-
Caesar.cipher("
|
53
|
+
Caesar.cipher("my message", 5)
|
48
54
|
```
|
49
55
|
|
50
56
|
## Use the gem
|
@@ -62,7 +68,7 @@ description: |-
|
|
62
68
|
```ruby
|
63
69
|
require 'tog_caesar'
|
64
70
|
|
65
|
-
Caesar.cipher("
|
71
|
+
Caesar.cipher("my message", 5)
|
66
72
|
```
|
67
73
|
email: tacoda@hey.com
|
68
74
|
executables:
|
@@ -87,7 +93,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
93
|
requirements:
|
88
94
|
- - ">="
|
89
95
|
- !ruby/object:Gem::Version
|
90
|
-
version: '
|
96
|
+
version: '2.6'
|
91
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
98
|
requirements:
|
93
99
|
- - ">="
|