autoaudio 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: f246e56c1fb76a81a197843e8701ba0be372a443
4
- data.tar.gz: 1cefafcdbbe19f503e1011400ae26d6055f02f0e
3
+ metadata.gz: 6397593ce6dee328f61aef1f0eee1e4f94c67f07
4
+ data.tar.gz: 03c18147f88a255e2f915ec3241a6b4141e2b602
5
5
  SHA512:
6
- metadata.gz: 7b99ffc1308814a18ae8eb3c5eaf161df25cbb94788bf45a7b6372709c89874f5b1f2628e973d968e9ee764ffa8b78ef4be334614c4f959248e46913d8b7d6d9
7
- data.tar.gz: 0c3945c6592fa8ca79e02aa98e97dd2973ff41e4ff252cfbc44ed61f4bbcd7e93983276c3ceeb5c87648a3b44531b2a2014481c612a8d1a1f0530f4c77b4142e
6
+ metadata.gz: 2150faae00c537fd69d5296e4a9fc2b2df2aa09cf7637acf96c1a9982aec2b075ab9cf8e3b468809d4f07370524e3dd90ab7dbf3fcde2363e7daa5763afdcea1
7
+ data.tar.gz: 75e1e9fd3085119ae9c5efc54ab25f289370cf25f702ed1e7df6b4807070e9c96347e37a106bfc4fe13e537d78113ebd739f8207d306cf52706467bfbe956bb0
data/README.md CHANGED
@@ -24,12 +24,12 @@ Setings can be found in `/lib/autoaudio/settings.rb`. `NZB_DOWNLOAD_LOCATION` is
24
24
 
25
25
  Autoaudio has a set of terminal commands:
26
26
 
27
- * `display_configuration_settings` Displays application configuration settings
28
- * `make_feeds` Downloads all feeds into the database
29
- * `display_feeds` Displays all feeds
30
- * `destroy_feeds` Destroys all feeds
31
- * `download` Downloads all feeds, creates `.nzb` and `.nfo` files, zips and uploads to [https://anonfiles.com/](https://anonfiles.com/), creates a list of upload urls and tweets an the url of anonymous gist containing the upload urls.
32
- * `download_genre GENRE` This command will open a single genre's `.nzb` files in your chosen newsreader, and update the database to reflect the change.
27
+ * `autoaudio display_configuration_settings` Displays application configuration settings
28
+ * `autoaudio make_feeds` Downloads all feeds into the database
29
+ * `autoaudio display_feeds` Displays all feeds
30
+ * `autoaudio destroy_feeds` Destroys all feeds
31
+ * `autoaudio download` Downloads all feeds, creates `.nzb` and `.nfo` files, zips and uploads to [https://anonfiles.com/](https://anonfiles.com/), creates a list of upload urls and tweets an the url of anonymous gist containing the upload urls.
32
+ * `autoaudio download_genre GENRE` This command will open a single genre's `.nzb` files in your chosen newsreader, and update the database to reflect the change.
33
33
 
34
34
  If you wish to tweet your results, you will need to install and set up [t](https://github.com/sferik/t). Autoaudio will automatically set your Twitter username, before tweeting.
35
35
 
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -1,3 +1,3 @@
1
1
  module Autoaudio
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoaudio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene Locklin
@@ -176,7 +176,7 @@ files:
176
176
  - Gemfile
177
177
  - LICENSE.txt
178
178
  - README.md
179
- - Thorfile
179
+ - Rakefile
180
180
  - autoaudio.gemspec
181
181
  - bin/autoaudio
182
182
  - config/mongoid.yml
data/Thorfile DELETED
@@ -1,29 +0,0 @@
1
- $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
2
-
3
- require 'bundler'
4
- require 'thor/rake_compat'
5
-
6
- class Default < Thor
7
- include Thor::RakeCompat
8
- Bundler::GemHelper.install_tasks
9
-
10
- desc 'build', "Build autoaudio-#{Autoaudio::VERSION}.gem into the pkg directory"
11
- def build
12
- Rake::Task['build'].execute
13
- end
14
-
15
- desc 'install', "Build and install autoaudio-#{Autoaudio::VERSION}.gem into system gems"
16
- def install
17
- Rake::Task['install'].execute
18
- end
19
-
20
- desc 'release', "Create tag v#{Autoaudio::VERSION} and build and push autoaudio-#{Autoaudio::VERSION}.gem to Rubygems"
21
- def release
22
- Rake::Task['release'].execute
23
- end
24
-
25
- desc 'spec', 'Run RSpec code examples - These don\'t exist yet...'
26
- def spec
27
- exec 'rspec spec'
28
- end
29
- end