gettextpo 0.1.0
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 +7 -0
- data/.clang-format +1 -0
- data/.dir-locals.el +5 -0
- data/.envrc +11 -0
- data/.rdoc_options +6 -0
- data/CHANGELOG.md +7 -0
- data/COPYING +674 -0
- data/README.md +105 -0
- data/Rakefile +37 -0
- data/ext/gettextpo/extconf.rb +29 -0
- data/ext/gettextpo/gettextpo.c +945 -0
- data/ext/gettextpo/gettextpo.h +23 -0
- data/lib/gettextpo/version.rb +22 -0
- data/lib/gettextpo.rb +56 -0
- data/sample.rb +22 -0
- data/sig/gettextpo.rbs +4 -0
- metadata +63 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f3ac361edc71b888a2d229cde89bb5502d51a46b3461a8d335879a5a4234141c
|
|
4
|
+
data.tar.gz: fc2308b078480e83ba35408a8b37eb2044bde4066b73390946507fba6da7d1bd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c987dabcd215ecaa0faaf18958c62337443c838432eb45b7f154132aa1c7ebe11cb5771cc7b0e17fd9317de73e2c3c298aea28baca61c5305f5ffe4f1251d934
|
|
7
|
+
data.tar.gz: 616e8b974e467b8bfbb11f8b316d937769bcead95bdf2785c0bd84767e8589a8e13e8ed41fd6bdc8fa8e511d15491130995f739506f96bf7a0d9c0116b001566
|
data/.clang-format
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
BasedOnStyle: GNU
|
data/.dir-locals.el
ADDED
data/.envrc
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
use guix \
|
|
2
|
+
clang \
|
|
3
|
+
gcc-toolchain \
|
|
4
|
+
ruby \
|
|
5
|
+
ruby-rake-compiler \
|
|
6
|
+
make \
|
|
7
|
+
gettext \
|
|
8
|
+
gdb
|
|
9
|
+
|
|
10
|
+
path_add C_INCLUDE_PATH "$(ruby -e "puts RbConfig::CONFIG['rubyhdrdir']")"
|
|
11
|
+
path_add C_INCLUDE_PATH "$(ruby -e "puts RbConfig::CONFIG['rubyarchhdrdir']")"
|
data/.rdoc_options
ADDED