faastruby 0.4.16 → 0.4.17

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
  SHA256:
3
- metadata.gz: 6e1be30dd9f54e8b0c0f65e0d7fa3f579675f8fd428801e45770b3f4940ca8b2
4
- data.tar.gz: 05d2262fd80bb23904c82157d21d51b0fa8640b2bdd0dca411d2b8547c921119
3
+ metadata.gz: 2a70f92187c1a882aeee76b3276421e4c2ad36117c9b1646b4b121f3d73470d5
4
+ data.tar.gz: e99d5a22bf986eaab1ab352b2f9acf95f7d8f4d9baafc95b032e0c4ec16bb822
5
5
  SHA512:
6
- metadata.gz: 8a7a836d1f7b3e57facbd428d719d309d6649f5f65c5e6f0ed5a98170d99962f5e55055dd76164a78ed9002894b2695e1f066790f0470fdf175c0c2b0d56438e
7
- data.tar.gz: bcaa943d337a47d2aa328b5af0abe3c3af79917f5a72b5add6b92fdd39a5064510be932c576cfb3c5a4025e64b494a6cdb75ebd5dc06f7ebaffc60b8f28da408
6
+ metadata.gz: 8e4a585eb2319de1c4c6e6fb799525be3798a1fe8e5821b4d0135d9cf13482e6a1f654bcdb43d6c7ba4a41a316ea37cb8a632f2c0f68981c92e27e2bd77002bc
7
+ data.tar.gz: 6b04e9cfead0cfe0f88df3623c1ef5a6ef8e974dbc7a7f236858d39e69bd89c2a543ede5a44a99d3501dc0bffb767a8ff2f5145b5fd82c6102c9f3611921507f
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.17 - Feb 4 2019
4
+ - Fix bug when cloning git repos with --template git:...
5
+
3
6
  ## 0.4.16 - Feb 4 2019
4
7
  - Add support for function templates
5
8
  - Add cli_version to `faastruby.yml`
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- faastruby (0.4.16)
4
+ faastruby (0.4.17)
5
5
  colorize (~> 0.8)
6
6
  faastruby-rpc (~> 0.2.1)
7
7
  oj (~> 3.6)
@@ -66,7 +66,8 @@ EOS
66
66
  when '--template'
67
67
  FaaStRuby::CLI.error("Option '--template' can't be used with '--blank' or '--runtime'.".red) if @options['runtime'] || @options['blank_template']
68
68
  template = @args.shift
69
- type, source = template.split(':')
69
+ type, *source = template.split(':')
70
+ source = source.join(':')
70
71
  @options['template'] = FaaStRuby::Template.new(type: type, source: source)
71
72
  when '--runtime'
72
73
  FaaStRuby::CLI.error("Option '--template' can't be used with '--blank' or '--runtime'.".red) if @options['template']
@@ -1,3 +1,3 @@
1
1
  module FaaStRuby
2
- VERSION = '0.4.16'
2
+ VERSION = '0.4.17'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faastruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.16
4
+ version: 0.4.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Arruda