autoaudio 0.0.1 → 0.0.2
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/README.md +6 -6
- data/Rakefile +1 -0
- data/lib/autoaudio/version.rb +1 -1
- metadata +2 -2
- data/Thorfile +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6397593ce6dee328f61aef1f0eee1e4f94c67f07
|
4
|
+
data.tar.gz: 03c18147f88a255e2f915ec3241a6b4141e2b602
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/autoaudio/version.rb
CHANGED
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.
|
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
|
-
-
|
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
|