my_precious 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -2
  3. data/lib/my_precious/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccd010d60f4bb76f52211a288cc338b93cc2f04d0e1552f2a71fe1e63ef7b1c5
4
- data.tar.gz: 7cadc9b6713926f133d97417e74e5c1429e9b112da633bbe478cef1ff838223b
3
+ metadata.gz: 0445ec1e16cea8658649665242039fe591744528f26640098f9dc5bd36c2deb9
4
+ data.tar.gz: efa2e70a939a30c7cf1c4afe1595b9a3dcab7053e7334619cc640f6279a4df3b
5
5
  SHA512:
6
- metadata.gz: 3c387090479902a6ead2ff905ac007db84cd45b6fec1c128838770901de9696c78c1636625882f214f2551d15b21636fdc26a1345f71d62731bd15fc585b4f17
7
- data.tar.gz: 564e969beb75ffdce5fa9b93b3dfe604ef775ad737af5500b5ee894cea5589d368e1ed190bd90c095430a3975c9da7580d60762ba7e8215ddb516b2896b1ec42
6
+ metadata.gz: 9dc2fb1996e3bc0af29a89ee5ee91e4696b9e4019c3832cb6c724a9893fe273443957a8550c655589407ad87f2beb0bfc9f18d450f8e45d717e33fe186c6e5f3
7
+ data.tar.gz: 47ccc7c17d5fc5336179d50e6fb928785c168dbe24330155a909d104348553c7b4d0fcd8d8e03198112181b6a114e5541a11e393ae2ab18bc7d7b11d84547d36
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Precious
2
2
 
3
3
  I wanted to make a fun programming language so I did it.
4
- It's all my own, my precious... Precious is a LOTR esoteric programming language translator.
4
+ It's mine. My own. My precious... Precious is a LOTR esoteric programming language translator.
5
5
  Precious uses lore keywords and english to create simple programming functionality.
6
6
 
7
7
  ## Installation
@@ -32,13 +32,38 @@ now, in the words of Gandalf the Gray, “All we have to decide is what to do wi
32
32
 
33
33
  # terminal commands
34
34
  my_precious forge 'filename'
35
+
35
36
  my_precious bring_forth 'filename' 'output filename'
36
37
 
38
+ my_precious destroy 'filename'
39
+
37
40
  forge: create an empty .precious file with the specified name that you gave it. You will write you Precious code here.
41
+
38
42
  bring_forth: 'filename' here is the same file you created with forge which will now be read and interpreted into Ruby code which is then written and outputted to 'output filename'
39
43
 
40
- ![terminal commands](https://lh3.google.com/u/0/d/1TleoYUX46Bp_sJ-Jb777BLQjKI--7iDN=w2458-h1394-iv1 "Terminal Commands")
44
+ destroy: 'filename' here refers to any existing file you would like to delete
41
45
 
46
+ ```
47
+ // ♥ my_precious forge middle_earth
48
+ middle_earth.precious, one file to rule them all
49
+ [17:27:59] middle_earth
50
+ // ♥ ls
51
+ middle_earth.precious
52
+ [17:28:08] middle_earth
53
+ // ♥ my_precious bring_forth middle_earth.precious valinor.rb
54
+ middle_earth.precious has been brought forth. It has been transcribed into valinor.rb
55
+ [17:28:22] middle_earth
56
+ // ♥ ls
57
+ middle_earth.precious valinor.rb
58
+ [17:28:23] middle_earth
59
+ // ♥ my_precious destroy middle_earth.precious
60
+ It's done... It's over now. middle_earth.precious has been destroyed
61
+ [17:28:44] middle_earth
62
+ // ♥ ls
63
+ valinor.rb
64
+ [17:28:49] middle_earth
65
+ // ♥
66
+ ```
42
67
 
43
68
  # known bugs
44
69
  version 0.2.3 - the last character of the function name will be removed.
@@ -1,3 +1,3 @@
1
1
  module MyPrecious
2
- VERSION = "0.2.6"
2
+ VERSION = "0.2.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: my_precious
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - jessicabettsftw