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 +4 -4
- data/CHANGELOG.md +9 -4
- data/Gemfile.lock +3 -3
- data/lib/trello_freestyler/main.rb +1 -1
- data/lib/trello_freestyler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c7cdf69a95d83d08be6181dc842917bde4d5b6f43f3511e24d6d25b655f9797
|
4
|
+
data.tar.gz: 0abd424638b1982afbd013e44c97e1cf813f25b9709abe75b0535ed5aa2d634f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76f1f6f3ab3610c107e1718e1fd3d305c59eebe40e29f12f80125a480bd48077612e3f96fe8878a9841efb2b4c67e08f5c51b8e509643d5682cc97b89f4b96c7
|
7
|
+
data.tar.gz: 56ccee7af1c37d7bb2440299698f7a1a2831b504ac2f8bb81ed6cffa2ac0bdddf4cdc80ec4d57e73a24e6d0387ab6089f996f4d9acf90585d809e0dfa092c140
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
+
# Change Log
|
1
2
|
|
2
|
-
## Version 0.
|
3
|
+
## Version 0.5.0
|
3
4
|
|
4
|
-
-
|
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
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
trello_freestyler (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.
|
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.
|
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
|
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
|
+
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-
|
11
|
+
date: 2020-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|