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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bba31a22ee565885b23b2bfb71d97b2b134b5c32
4
- data.tar.gz: 99334269c934b371d01984f6b3fc5091f47fc14a
3
+ metadata.gz: 03f585acfd07efebcebbde1defc4de33b85c2602
4
+ data.tar.gz: 853ed1e11a744d8debfa013095c2646485a0a2d2
5
5
  SHA512:
6
- metadata.gz: 6af02bac67469da95095a3c6db093af69862f70f84b4afd4c518748631c9e5c3ff52d07935eae20dac0c76b6c43353e0a21f1b3e28fef494383e74bff289382a
7
- data.tar.gz: 4199b205b7eb0950be0829964cb3c38f18be57cded9a85e2730f3dff223f3355ab68604ae42e3ab5cac669a0f37b647476a4049f6587422715b37e8faa079456
6
+ metadata.gz: 87c237e039c24c6873b55606d98c89b982520d19c847c5c9b7740e4b754e7dd7e95bbc3315f603d8a2c78ef3205bca462456420a6011fed3f140e9b470957517
7
+ data.tar.gz: ae005b8088871439fad23a499ce854efa8c2d7d1fd2323da1934d410116cbe3795413bf8fe1661a21f3ffaa6717e37b3fa7a9735e6b7d8a69db292dc876bc826
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.4.3 (2014-02-26)
2
+
3
+ * Fixed regression with Dropbox-Uploader
4
+
1
5
  # 0.4.2 (2014-02-26)
2
6
 
3
7
  * Fixed regression with Dropbox-Uploader
data/README.md CHANGED
@@ -412,12 +412,7 @@ $ bundle install --global
412
412
 
413
413
  # Future Releases
414
414
 
415
- Some functionality I would like to tackle for future releases:
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
 
@@ -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.
@@ -1,4 +1,4 @@
1
1
  module SifttterRedux
2
- VERSION = '0.4.2'
3
- NEWEST_CONFIG_VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
+ NEWEST_CONFIG_VERSION = '0.4.3'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sifttter-redux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Bach