cuchinizer 1.0 โ 1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.idea/misc.xml +4 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +2 -3
- data/cuchinizer-1.0.gem +0 -0
- data/cuchinizer-1.1.gem +0 -0
- data/cuchinizer-1.2.gem +0 -0
- data/cuchinizer.gemspec +3 -3
- data/lib/cuchinizer.rb +1 -1
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3029b47210dff62d1caa102d477ef2eca745dae21912b40370e68b5edbf1a208
|
4
|
+
data.tar.gz: cd198759af6882f715b466b327cfc36ddc21b9a5048305327b7657dbcfb8617d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 643907742daa1db54baface00d9e482f0bc8dafb4bbee8c9507be2ebfccf371cc182f12eb5903d77a599449183a11ea8e1b813149e0cf6bd10f5e016c838597e
|
7
|
+
data.tar.gz: c2d8d482721d94c1f48d3dd957e6df41c23d82272353688e3725173f59539391e49c0af2597eb5a6d7660a0b5e990a64ed33c7f261cc28a7ebd84eacfa77da8a
|
data/.idea/misc.xml
ADDED
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<project version="4">
|
3
3
|
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="eda6a3ce-3f01-43bd-9087-5cccb904c142" name="Changes" comment=""
|
5
|
-
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
6
|
-
</list>
|
4
|
+
<list default="true" id="eda6a3ce-3f01-43bd-9087-5cccb904c142" name="Changes" comment="" />
|
7
5
|
<option name="SHOW_DIALOG" value="false" />
|
8
6
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
9
7
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
@@ -83,6 +81,7 @@
|
|
83
81
|
<workItem from="1646237240447" duration="580000" />
|
84
82
|
<workItem from="1646237880908" duration="87000" />
|
85
83
|
<workItem from="1646237980818" duration="31000" />
|
84
|
+
<workItem from="1646240039960" duration="292000" />
|
86
85
|
</task>
|
87
86
|
<servers />
|
88
87
|
</component>
|
data/cuchinizer-1.0.gem
ADDED
Binary file
|
data/cuchinizer-1.1.gem
ADDED
Binary file
|
data/cuchinizer-1.2.gem
ADDED
Binary file
|
data/cuchinizer.gemspec
CHANGED
@@ -3,12 +3,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "cuchinizer"
|
6
|
-
spec.version = "1.
|
6
|
+
spec.version = "1.3"
|
7
7
|
spec.authors = ["Vinicius Kammradt", "Gabriel Rohden"]
|
8
8
|
spec.email = ["vinicius.kammradt1@gmail.com", "gabriel_rohden@outlook.com"]
|
9
9
|
|
10
|
-
spec.summary = "'
|
11
|
-
spec.description = "'
|
10
|
+
spec.summary = "'cuchinizer' allows you to write Ruby script by using only 'cuchi'. It's a simple and easy way to write Ruby scripts."
|
11
|
+
spec.description = "'cuchinider' allows you to write Ruby script by using only 'cuchi'. It's a simple and easy way to write Ruby scripts."
|
12
12
|
spec.homepage = "http://github.com/kammradt/cuchinizer"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
data/lib/cuchinizer.rb
CHANGED
@@ -7,7 +7,7 @@ def ๐๐cuchinizer๐๐(src)
|
|
7
7
|
(!code.empty? && !code.last.size + n + 1 >= (2 ** 6) + n) ? code.last << " " : code << ""
|
8
8
|
code.last << :cuchi.to_s * n
|
9
9
|
end
|
10
|
-
([] << ['require "
|
10
|
+
([] << ['require "cuchinizer"'] + code).join "\n"
|
11
11
|
end
|
12
12
|
|
13
13
|
def method_missing(mhd, *x)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cuchinizer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.3'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vinicius Kammradt
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '10.0'
|
42
|
-
description: "'
|
42
|
+
description: "'cuchinider' allows you to write Ruby script by using only 'cuchi'.
|
43
43
|
It's a simple and easy way to write Ruby scripts."
|
44
44
|
email:
|
45
45
|
- vinicius.kammradt1@gmail.com
|
@@ -48,11 +48,16 @@ executables: []
|
|
48
48
|
extensions: []
|
49
49
|
extra_rdoc_files: []
|
50
50
|
files:
|
51
|
+
- ".idea/misc.xml"
|
52
|
+
- ".idea/vcs.xml"
|
51
53
|
- ".idea/workspace.xml"
|
52
54
|
- Gemfile
|
53
55
|
- LICENSE.txt
|
54
56
|
- README.md
|
55
57
|
- Rakefile
|
58
|
+
- cuchinizer-1.0.gem
|
59
|
+
- cuchinizer-1.1.gem
|
60
|
+
- cuchinizer-1.2.gem
|
56
61
|
- cuchinizer.gemspec
|
57
62
|
- lib/cuchinizer.rb
|
58
63
|
homepage: http://github.com/kammradt/cuchinizer
|
@@ -74,9 +79,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
79
|
- !ruby/object:Gem::Version
|
75
80
|
version: '0'
|
76
81
|
requirements: []
|
77
|
-
rubygems_version: 3.1.
|
82
|
+
rubygems_version: 3.1.6
|
78
83
|
signing_key:
|
79
84
|
specification_version: 4
|
80
|
-
summary: "'
|
85
|
+
summary: "'cuchinizer' allows you to write Ruby script by using only 'cuchi'. It's
|
81
86
|
a simple and easy way to write Ruby scripts."
|
82
87
|
test_files: []
|