case_transform-rust-extensions 0.3.5 → 0.3.6
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 +1 -0
- data/ext/case_transform/build.sh +16 -13
- data/lib/case_transform/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce2d720abfa0470120ee6dd8ebe02c87ce52bd59
|
|
4
|
+
data.tar.gz: 664375533ad50d29184af8479a0922d2067303c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c43bd49998b5cc3a707161ee627a99e349c5c0b1e739e2726c126168ac3fc19d97f182f89b0e9fe41360bd49ea20565bb344d06213fdeb591c2cd06571332c3
|
|
7
|
+
data.tar.gz: 7c4bd5971290fe5ee9d084f1405a0a246c138d71d79438694bfad9ef2a933ea8e508a98a7125dcfcd116363fbac5f02a490e82003412f0748785948613b8ddfb
|
data/README.md
CHANGED
data/ext/case_transform/build.sh
CHANGED
|
@@ -2,6 +2,21 @@ command_exists () {
|
|
|
2
2
|
type "$1" &> /dev/null ;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
build() {
|
|
6
|
+
echo ""
|
|
7
|
+
echo "rustc: $(which rustc)"
|
|
8
|
+
echo "cargo: $(which cargo)"
|
|
9
|
+
echo ""
|
|
10
|
+
|
|
11
|
+
if ! command_exists rustc
|
|
12
|
+
then
|
|
13
|
+
echo "Rust still not installed..."
|
|
14
|
+
exit 1
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
cargo build --release
|
|
18
|
+
}
|
|
19
|
+
|
|
5
20
|
echo ""
|
|
6
21
|
echo "current directory"
|
|
7
22
|
echo `pwd`
|
|
@@ -14,16 +29,4 @@ then
|
|
|
14
29
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
|
|
15
30
|
fi
|
|
16
31
|
|
|
17
|
-
|
|
18
|
-
echo "rustc: "
|
|
19
|
-
echo `which rustc`
|
|
20
|
-
echo "cargo: "
|
|
21
|
-
echo `which cargo`
|
|
22
|
-
|
|
23
|
-
if ! command_exists rustc
|
|
24
|
-
then
|
|
25
|
-
echo "Rust still not installed..."
|
|
26
|
-
exit 1
|
|
27
|
-
fi
|
|
28
|
-
|
|
29
|
-
cargo build --release
|
|
32
|
+
build
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: case_transform-rust-extensions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- L. Preston Sego III
|
|
@@ -194,5 +194,5 @@ rubyforge_project:
|
|
|
194
194
|
rubygems_version: 2.5.1
|
|
195
195
|
signing_key:
|
|
196
196
|
specification_version: 4
|
|
197
|
-
summary: CaseTransform-0.3.
|
|
197
|
+
summary: CaseTransform-0.3.6
|
|
198
198
|
test_files: []
|