trello_freestyler 0.4.0 → 0.5.0

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
  SHA256:
3
- metadata.gz: 4954ed0ff60fcddd08c3446685dfc8d24581f36c5798c05435fb7f78bf9d7900
4
- data.tar.gz: 95f212985ea8a2c0ab5fef1fc5dbc97823c9b4fa1aa4f75f30a7a25dbd0db2ef
3
+ metadata.gz: 6c7cdf69a95d83d08be6181dc842917bde4d5b6f43f3511e24d6d25b655f9797
4
+ data.tar.gz: 0abd424638b1982afbd013e44c97e1cf813f25b9709abe75b0535ed5aa2d634f
5
5
  SHA512:
6
- metadata.gz: 6cc6511d911141862caf2a815154103efe2097dd41eef726204031f003ca001c2088b51ba8d6d346b72af29133b3c81800194754f79630a7c6354f8b4a07b7f5
7
- data.tar.gz: c264e485ff0a1e186086cb7a636bc6a48a56e6cdac19c938543b3a3bd00244e9422bf96395ca1bb37b272eb121bde35f1b168947d24c2502536f4b01f65bd97a
6
+ metadata.gz: 76f1f6f3ab3610c107e1718e1fd3d305c59eebe40e29f12f80125a480bd48077612e3f96fe8878a9841efb2b4c67e08f5c51b8e509643d5682cc97b89f4b96c7
7
+ data.tar.gz: 56ccee7af1c37d7bb2440299698f7a1a2831b504ac2f8bb81ed6cffa2ac0bdddf4cdc80ec4d57e73a24e6d0387ab6089f996f4d9acf90585d809e0dfa092c140
@@ -1,9 +1,14 @@
1
+ # Change Log
1
2
 
2
- ## Version 0.3.0
3
+ ## Version 0.5.0
3
4
 
4
- - moved `TrelloFreestyler::Cli::Options` to `TrelloFreestyler::Options`
5
- - added instructions on how to use without the cli
5
+ - `execution_datetime` is now formatted to be bigquery compatible, ie: `%Y-%m-%d %H:%M:%S.%L %:z`
6
6
 
7
7
  ## Version 0.4.0
8
8
 
9
- - add `execution_datetime` and `execution_local_date` field to each row of the data we export.
9
+ - add `execution_datetime` and `execution_local_date` field to each row of the data we export.
10
+
11
+ ## Version 0.3.0
12
+
13
+ - moved `TrelloFreestyler::Cli::Options` to `TrelloFreestyler::Options`
14
+ - added instructions on how to use without the cli
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trello_freestyler (0.4.0)
4
+ trello_freestyler (0.5.0)
5
5
  rest-client (~> 2.1)
6
6
  tty-spinner (~> 0.9)
7
7
  tzinfo (~> 2.0)
@@ -19,7 +19,7 @@ GEM
19
19
  domain_name (~> 0.5)
20
20
  mime-types (3.3.1)
21
21
  mime-types-data (~> 3.2015)
22
- mime-types-data (3.2020.0512)
22
+ mime-types-data (3.2020.1104)
23
23
  netrc (0.11.0)
24
24
  parallel (1.19.2)
25
25
  parser (2.7.1.4)
@@ -65,7 +65,7 @@ GEM
65
65
  tty-cursor (0.7.1)
66
66
  tty-spinner (0.9.3)
67
67
  tty-cursor (~> 0.7)
68
- tzinfo (2.0.2)
68
+ tzinfo (2.0.3)
69
69
  concurrent-ruby (~> 1.0)
70
70
  unf (0.1.4)
71
71
  unf_ext
@@ -60,7 +60,7 @@ module TrelloFreestyler
60
60
  def self.export_with_stamp(dump, to, execution_datetime, execution_date)
61
61
  File.open(to, 'w') do |f|
62
62
  dump.each do |row|
63
- row[:execution_datetime] = execution_datetime
63
+ row[:execution_datetime] = execution_datetime.strftime('%Y-%m-%d %H:%M:%S.%L %:z')
64
64
  row[:execution_local_date] = execution_date
65
65
  f.puts row.to_json
66
66
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TrelloFreestyler
4
- VERSION = '0.4.0'
4
+ VERSION = '0.5.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trello_freestyler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Hamman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-29 00:00:00.000000000 Z
11
+ date: 2020-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client