case_transform-rust-extensions 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d366396e9293bc69ac0ddea96166ce830e6019f9
4
- data.tar.gz: b850353b0bf53a90cc2777754b5cb7350174edfa
3
+ metadata.gz: ce2d720abfa0470120ee6dd8ebe02c87ce52bd59
4
+ data.tar.gz: 664375533ad50d29184af8479a0922d2067303c9
5
5
  SHA512:
6
- metadata.gz: 9cd365d354512fc9dfe3c892a5609c87be3aa7adf9bdee02627555885d0a8fb8173768bfc7612083f02baa7619a66533c14e687949e2b749c121acb8ec837b03
7
- data.tar.gz: bc48b85ebeb98e7b51e10ce05addbb953a133ccaad10542c4836a62ffa9f9f895201c2a8bad05a9d5c8d46253d3fe0bdf83d5441322abb7ff5b3f0f7afd7ca9b
6
+ metadata.gz: 9c43bd49998b5cc3a707161ee627a99e349c5c0b1e739e2726c126168ac3fc19d97f182f89b0e9fe41360bd49ea20565bb344d06213fdeb591c2cd06571332c3
7
+ data.tar.gz: 7c4bd5971290fe5ee9d084f1405a0a246c138d71d79438694bfad9ef2a933ea8e508a98a7125dcfcd116363fbac5f02a490e82003412f0748785948613b8ddfb
data/README.md CHANGED
@@ -45,6 +45,7 @@ gem install case_transform-rust-extensions
45
45
  ### Installation Dependencies
46
46
 
47
47
  - curl
48
+ - git
48
49
 
49
50
  ## Usage
50
51
 
@@ -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
- echo "rustc and cargo are installed"
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module CaseTransform
3
- VERSION = '0.3.5'.freeze
3
+ VERSION = '0.3.6'.freeze
4
4
  RUST = true
5
5
  end
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.5
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.5
197
+ summary: CaseTransform-0.3.6
198
198
  test_files: []