falkorlib 0.6.14 → 0.6.15
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/Gemfile.lock +1 -1
- data/lib/falkorlib/bootstrap/base.rb +2 -2
- data/lib/falkorlib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b22973747d24bb8f4f8eaaa2b18e82c95cb64289
|
|
4
|
+
data.tar.gz: 5bd3947453b55d95f94ef994d9a4aeb931bea0b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cc1131b16663e0c30d3c8bc87689648f62d387578be04366dfe72dba196ef5688f99b1f20bda39290778a61d6708481530ab71327393442662f1c69782832ec
|
|
7
|
+
data.tar.gz: 702f2a244f0a1cfd0aaf9b7da93b254579274b9d3e5e3ea4ff092bde9c2f72cf89b10de251cf8000d139347bebe98f87071f776ba06a81ae7960d3184a35255e
|
data/Gemfile.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
################################################################################
|
|
3
|
-
# Time-stamp: <Wed 2016-06-29 14:
|
|
3
|
+
# Time-stamp: <Wed 2016-06-29 14:14 svarrette>
|
|
4
4
|
################################################################################
|
|
5
5
|
# Interface for the main Bootstrapping operations
|
|
6
6
|
#
|
|
@@ -564,7 +564,7 @@ module FalkorLib
|
|
|
564
564
|
project_dir = ask("\tLaTeX Sources directory (relative to the Git root directory)", "#{default_project_dir}")
|
|
565
565
|
raise FalkorLib::ExecError "Empty project directory" if project_dir.empty?
|
|
566
566
|
src_project_dir = File.join(project_dir, 'src')
|
|
567
|
-
srcdir = File.join(rootdir,
|
|
567
|
+
srcdir = File.join(rootdir, src_project_dir)
|
|
568
568
|
if File.exists?(File.join(srcdir, '.root'))
|
|
569
569
|
warn "The directory '#{project_dir}' seems to have been already initialized"
|
|
570
570
|
really_continue? unless options[:force]
|
data/lib/falkorlib/version.rb
CHANGED