jarbs 0.6.2 → 0.6.3
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/lib/jarbs.rb +1 -0
- data/lib/jarbs/config.rb +6 -0
- data/lib/jarbs/node_build.rb +1 -1
- data/lib/jarbs/project_generator.rb +3 -1
- data/lib/jarbs/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: d0a744cf8de6178336c52434aece80984b0e34cc
|
|
4
|
+
data.tar.gz: 753329c17b36647609e6045926cb70b54357543b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f2783770532eea872842633786d9759848fc13e8a9636dff7eef8011ad458b3b3ae3f2d09747815068f9b763f8a0a22a1146a3777113c4a4c82d11c9b2fd5ee
|
|
7
|
+
data.tar.gz: 30cfe97c41132b937a281bac16c28472b52bdbb9bddffd577b7e6743fe614536165dc37ccb8b9389ae8824eb7f15e7c975dc7bb28bba2ab4fffd31761bc36780
|
data/lib/jarbs.rb
CHANGED
data/lib/jarbs/config.rb
CHANGED
data/lib/jarbs/node_build.rb
CHANGED
|
@@ -21,7 +21,7 @@ module Jarbs
|
|
|
21
21
|
FileUtils.cp_r @function.source_path, @function.build_path
|
|
22
22
|
|
|
23
23
|
capture_errors do
|
|
24
|
-
abortable_run "npm run build:function -- --out-dir #{@function.build_path} #{@function.
|
|
24
|
+
abortable_run "npm run build:function -- --out-dir #{@function.build_path} #{@function.build_path}"
|
|
25
25
|
|
|
26
26
|
npm_install @function.build_path, '--production'
|
|
27
27
|
end
|
|
@@ -52,7 +52,9 @@ module Jarbs
|
|
|
52
52
|
agree("Would you like to log jarbs crashes to GitHub automatically (y/n)? ")
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
if autolog and !config.exists?('github.token')
|
|
56
|
+
GithubAuth.new(config).generate_token(@name)
|
|
57
|
+
end
|
|
56
58
|
end
|
|
57
59
|
end
|
|
58
60
|
end
|
data/lib/jarbs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jarbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luke van der Hoeven
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|