vault-tools 0.4.12 → 0.4.13

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.
data/Rakefile CHANGED
@@ -9,11 +9,3 @@ YARD::Rake::YardocTask.new
9
9
 
10
10
  desc "Create test databases and run the test suite"
11
11
  task :default => [:test]
12
-
13
- desc "Run all pull schema tasks (all tasks that match pull_.*_schema)"
14
- task :pull_schemas do
15
- Rake::Task.tasks.select { |task| task.name =~ /pull_.*_schema/ }.each do |task|
16
- puts "Invoking #{task.name}..."
17
- task.invoke
18
- end
19
- end
@@ -0,0 +1,18 @@
1
+ # Expose all rake tasks in vault-tools
2
+ #
3
+ # include in Rakefile via:
4
+ #
5
+ # require 'vault-tools/tasks'
6
+
7
+ require 'vault-tools/core_db_tasks'
8
+ require 'vault-tools/payments_db_tasks'
9
+ require 'vault-tools/usage_db_tasks'
10
+ require 'vault-tools/analytics_db_tasks'
11
+
12
+ desc "Run all pull schema tasks (all tasks that match pull_.*_schema)"
13
+ task :pull_schemas do
14
+ Rake::Task.tasks.select { |task| task.name =~ /pull_.*_schema/ }.each do |task|
15
+ puts "Invoking #{task.name}..."
16
+ task.invoke
17
+ end
18
+ end
@@ -1,5 +1,5 @@
1
1
  module Vault
2
2
  module Tools
3
- VERSION = '0.4.12'
3
+ VERSION = '0.4.13'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vault-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.12
4
+ version: 0.4.13
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -203,6 +203,7 @@ files:
203
203
  - lib/vault-tools/product.rb
204
204
  - lib/vault-tools/s3.rb
205
205
  - lib/vault-tools/sinatra_helpers/html_serializer.rb
206
+ - lib/vault-tools/tasks.rb
206
207
  - lib/vault-tools/text_processor.rb
207
208
  - lib/vault-tools/time.rb
208
209
  - lib/vault-tools/usage_db_tasks.rb