xss 0.0.4-x64-mingw32

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f9024ad3781744734ef5b1ca4803fc45cfa333dea3ab089fc4d9aab63c344bb1
4
+ data.tar.gz: a2de315ee288327e1aa12be46c50d5edfeeafd34c3433d947a02ecef92335f00
5
+ SHA512:
6
+ metadata.gz: 127a1304f4575c7213ed3df4a699cd80ab81c4a8cad77183f721b190a5e1a206ad808d4a11e3f790ca2588a28d53b7dbc3cd467689476cc1fba459e69bda7848
7
+ data.tar.gz: c2dded51af89d7fd717dcf929a2807f0b2a184fb910952d92b823523f32b832592f77931bbd0fb02b1cd0b6f24a00072bb663d6d5eedd56a1bbd0f01f5ff1a6c
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # sgrb
2
+ Ruby repository for terminal interface interaction and anywhere access.
@@ -0,0 +1,12 @@
1
+ require "mkmf"
2
+
3
+ abort "missing malloc()" unless have_func "malloc"
4
+ abort "missing free()" unless have_func "free"
5
+
6
+ create_makefile "specs/specs"
7
+
8
+ Gem::Specification.new "specs", "0.0.4" do |s|
9
+ # [...]
10
+
11
+ s.extensions = %w[ext/specs/extconf.rb]
12
+ end