sifttter-redux 0.4.2 → 0.4.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/HISTORY.md +4 -0
- data/README.md +1 -6
- data/lib/sifttter_redux/dbu.rb +2 -2
- data/lib/sifttter_redux/version.rb +2 -2
- 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: 03f585acfd07efebcebbde1defc4de33b85c2602
|
|
4
|
+
data.tar.gz: 853ed1e11a744d8debfa013095c2646485a0a2d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87c237e039c24c6873b55606d98c89b982520d19c847c5c9b7740e4b754e7dd7e95bbc3315f603d8a2c78ef3205bca462456420a6011fed3f140e9b470957517
|
|
7
|
+
data.tar.gz: ae005b8088871439fad23a499ce854efa8c2d7d1fd2323da1934d410116cbe3795413bf8fe1661a21f3ffaa6717e37b3fa7a9735e6b7d8a69db292dc876bc826
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -412,12 +412,7 @@ $ bundle install --global
|
|
|
412
412
|
|
|
413
413
|
# Future Releases
|
|
414
414
|
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
* Plugin architecture for services that IFTTT doesn't support
|
|
418
|
-
* Interactive cron job installer
|
|
419
|
-
* Smarter checking of the config file to see if an old version is being used
|
|
420
|
-
* Multiline Sifttter entries
|
|
415
|
+
Enhancement requests (my own or those submitted by others) can be found on the [Issues Page](https://github.com/bachya/Sifttter-Redux/issues?labels=enhancement&state=open "Open Enhancements").
|
|
421
416
|
|
|
422
417
|
# Bugs and Feature Requests
|
|
423
418
|
|
data/lib/sifttter_redux/dbu.rb
CHANGED
|
@@ -40,8 +40,8 @@ module SifttterRedux
|
|
|
40
40
|
# ----------------------------------------------------
|
|
41
41
|
def self.install_wizard(already_initialized = false)
|
|
42
42
|
CLIMessage::section_block('CONFIGURING DROPBOX UPLOADER...') do
|
|
43
|
-
# Prompt the user for a location to save Dropbox Uploader.
|
|
44
|
-
path = CLIMessage::prompt('Location for Dropbox-Uploader', already_initialized ? Configuration['db_uploader']['base_filepath'] : DBU_LOCAL_FILEPATH)
|
|
43
|
+
# Prompt the user for a location to save Dropbox Uploader.
|
|
44
|
+
path = CLIMessage::prompt('Location for Dropbox-Uploader', already_initialized && !Configuration['db_uploader']['base_filepath'].nil? ? Configuration['db_uploader']['base_filepath'] : DBU_LOCAL_FILEPATH)
|
|
45
45
|
path.chop! if path.end_with?('/')
|
|
46
46
|
|
|
47
47
|
# If the entered directory exists, clone the repository.
|