typingpool 0.8.14 → 0.8.15

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: 928624f4083c4e62e07f7dda152e4c7e23f3092b
4
- data.tar.gz: b6ba151430fec154bd4d1ddecef4c108154e33a0
3
+ metadata.gz: 666b74cdcb9b788d0d1f63581b755d6fc2ec505f
4
+ data.tar.gz: 51ead2e3bb6ef11dce897e778f09c069931575e4
5
5
  SHA512:
6
- metadata.gz: f62939bbac1f46397b3130b5d7e1fac88f2446d56b44135d321fcde02dd30126281eec61eb359bfb48d2e8f039aede7fcb50a111274d20b48cb1f0b88bd8a103
7
- data.tar.gz: ccf093a7d5402071a6544c9e7999fb9169f5e43a462705c449a05d5500811fcbd7c775eb08c339ddfe4a69ff1160c96ca34a3ae3aae5a56d896799403aceba3a
6
+ metadata.gz: baa465fbd0970b1080678d2436198a41db888602ca0789db85e2232407622b6423bcd4339c47e0f9ca1dcc466bea10c00d71fd4d9b1feb037e49d3a30780c324
7
+ data.tar.gz: f6dbf72ad8cb91654c517e8e4edcebf811c27ac2a3cf5bf7e561918f664fce370ab930d5028355853ee87deb956deec8c45772ac5838fb5acbf2b76fe672215e
@@ -2,11 +2,9 @@
2
2
 
3
3
  require 'optparse'
4
4
  require 'typingpool'
5
- require 'typingpool/utility/test'
6
5
  require 'highline/import'
7
6
  include Typingpool::App::FriendlyExceptions
8
7
  include Typingpool::App::CLI::Formatter
9
- include Typingpool::Utility::Test
10
8
 
11
9
  options = {
12
10
  :keyword => [],
@@ -215,6 +213,8 @@ STDERR.puts "#{needed_assignments.count} assignments to assign"
215
213
  Typingpool::Amazon.setup(:sandbox => options[:sandbox], :config => config)
216
214
 
217
215
  if options[:fixture]
216
+ require 'typingpool/utility/test'
217
+ include Typingpool::Utility::Test
218
218
  vcr_load(options[:fixture], config, not(options[:fixturerecord]), {
219
219
  :preserve_exact_body_bytes => true,
220
220
  :match_requests_on => [:method, vcr_core_host_matcher]
@@ -2,8 +2,6 @@
2
2
 
3
3
  require 'typingpool'
4
4
  require 'optparse'
5
- require 'typingpool/utility/test'
6
- include Typingpool::Utility::Test
7
5
 
8
6
  options = {}
9
7
  OptionParser.new do |commands|
@@ -40,6 +38,8 @@ end.parse!
40
38
  config = Typingpool::App::CLI.config_from_arg(options[:config]) or abort "No config file at '#{options[:config]}'"
41
39
 
42
40
  if options[:fixture]
41
+ require 'typingpool/utility/test'
42
+ include Typingpool::Utility::Test
43
43
  vcr_load(options[:fixture], config, not(options[:fixturerecord]), {
44
44
 
45
45
  })
@@ -3,11 +3,9 @@
3
3
  require 'optparse'
4
4
  require 'typingpool'
5
5
  require 'fileutils'
6
- require 'typingpool/utility/test/script'
7
6
  require 'typingpool/app/cli/formatter'
8
7
  require 'highline/import'
9
8
 
10
- include Typingpool::Utility::Test::Script
11
9
  include Typingpool::App::CLI::Formatter
12
10
 
13
11
  options = {}
@@ -78,6 +76,8 @@ end
78
76
 
79
77
  Typingpool::Amazon.setup(:sandbox => options[:sandbox], :config => config)
80
78
  if options[:fixture]
79
+ require 'typingpool/utility/test/script'
80
+ include Typingpool::Utility::Test::Script
81
81
  vcr_load(options[:fixture], config, not(options[:fixturerecord]), {
82
82
  :preserve_exact_body_bytes => true,
83
83
  :match_requests_on => [:method, vcr_core_host_matcher]
@@ -2,12 +2,10 @@
2
2
 
3
3
  require 'optparse'
4
4
  require 'typingpool'
5
- require 'typingpool/utility/test'
6
5
  require 'fileutils'
7
6
  require 'tempfile'
8
7
  require 'tmpdir'
9
8
  include Typingpool::App::FriendlyExceptions
10
- include Typingpool::Utility::Test
11
9
 
12
10
  options = {
13
11
  :files => [],
@@ -195,10 +193,14 @@ else
195
193
  end #if project.local
196
194
 
197
195
  unless options[:noupload]
198
- vcr_load(options[:fixture], config, not(options[:fixturerecord]), {
196
+ if options[:fixture]
197
+ require 'typingpool/utility/test'
198
+ include Typingpool::Utility::Test
199
+ vcr_load(options[:fixture], config, not(options[:fixturerecord]), {
199
200
  :preserve_exact_body_bytes => true,
200
201
  :match_requests_on => [:method, vcr_core_host_matcher]
201
- }) if options[:fixture]
202
+ })
203
+ end
202
204
  Typingpool::App.upload_audio_for_project(project) do |file, as|
203
205
  STDERR.puts "Uploading #{File.basename(file)} to #{project.remote.host}/#{project.remote.path} as #{as}"
204
206
  end
@@ -1,11 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'typingpool'
4
- require 'typingpool/utility/test'
5
4
  require 'highline/import'
6
5
  require 'optparse'
7
6
  include Typingpool::App::CLI::Formatter
8
- include Typingpool::Utility::Test
9
7
 
10
8
  options = {}
11
9
  OptionParser.new do |commands|
@@ -64,6 +62,8 @@ if options[:project]
64
62
  end
65
63
 
66
64
  if options[:fixture]
65
+ require 'typingpool/utility/test'
66
+ include Typingpool::Utility::Test
67
67
  vcr_load(options[:fixture], config, not(options[:fixturerecord]))
68
68
  at_exit{ vcr_stop }
69
69
  end
@@ -1,3 +1,3 @@
1
1
  module Typingpool
2
- VERSION = '0.8.14'
2
+ VERSION = '0.8.15'
3
3
  end #Typingpool
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typingpool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.14
4
+ version: 0.8.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Tate
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-14 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rturk