dataduck 0.5.6 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/DEV_README.md +1 -1
- data/README.md +1 -1
- data/dataduck.gemspec +1 -1
- data/docs/overview/getting_started.md +5 -1
- data/lib/dataduck/version.rb +2 -2
- metadata +6 -7
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8794828d4939bcf5f0d97ecf96116a2cac8cd117
|
4
|
+
data.tar.gz: b82a5e94f079028fbbf25ba39cb85419dad70504
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 225225ed58ec8d1ef361b39b9a20cfbc062b5012c0adb150639384379921be48799e0feab29b03624e6660c58c9c38fda79083287c26eb6b67e1f4fa51d3c15c
|
7
|
+
data.tar.gz: 932026a953c2bf2cf88d38ab59beb8bd97cfafd27fd7b7c7b7a670a6870b0b66cabc082910fae09044c6402027a94863746065941f438482d1ffff7c1cd9d025
|
data/DEV_README.md
CHANGED
data/README.md
CHANGED
@@ -30,7 +30,7 @@ Finally, run the quickstart command:
|
|
30
30
|
|
31
31
|
$ dataduck quickstart
|
32
32
|
|
33
|
-
The quickstart wizard will ask you for credentials to your database, then create the basic setup for your project. After the
|
33
|
+
The quickstart wizard will ask you for credentials to your database, then create the basic setup for your project. After the quickstart, you'll still need to edit the .env and config/base.yml files, as well as customize your tables. Finally, your project's ETL can be run by running the `dataduck etl all` command.
|
34
34
|
|
35
35
|
If you'd like to run this regularly, such as every night, it's recommended to use the [whenever](https://github.com/javan/whenever) gem to manage a cron job to regularly run the ETL.
|
36
36
|
|
data/dataduck.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_runtime_dependency "dotenv", '~> 2.0'
|
25
25
|
spec.add_runtime_dependency "sequel", '~> 4.19'
|
26
26
|
spec.add_runtime_dependency "pg", '~> 0.16'
|
27
|
-
spec.add_runtime_dependency "
|
27
|
+
spec.add_runtime_dependency "mysql2", '~> 0.4'
|
28
28
|
spec.add_runtime_dependency "aws-sdk", "~> 2.0"
|
29
29
|
spec.add_runtime_dependency "sequel-redshift"
|
30
30
|
end
|
@@ -23,6 +23,10 @@ Finally, run the quickstart command:
|
|
23
23
|
|
24
24
|
$ dataduck quickstart
|
25
25
|
|
26
|
-
It will ask you for the credentials to your database, and then create the basic setup for your project.
|
26
|
+
It will ask you for the credentials to your database, and then create the basic setup for your project.
|
27
|
+
|
28
|
+
You will still need to update your .env and config/base.yml files with additional details, such as your AWS S3 api keys.
|
29
|
+
|
30
|
+
After you are completely setup, your project's ETL can be run by running `dataduck etl all`
|
27
31
|
|
28
32
|
If you would like to run this regularly, such as every night, it's recommended to use the [whenever](https://github.com/javan/whenever) gem to manage a cron job to regularly run the ETL.
|
data/lib/dataduck/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dataduck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Pickhardt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -95,19 +95,19 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0.16'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: mysql2
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
103
|
+
version: '0.4'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
110
|
+
version: '0.4'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: aws-sdk
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -147,7 +147,6 @@ extra_rdoc_files: []
|
|
147
147
|
files:
|
148
148
|
- ".gitignore"
|
149
149
|
- ".rspec"
|
150
|
-
- ".ruby-version"
|
151
150
|
- DEV_README.md
|
152
151
|
- Gemfile
|
153
152
|
- README.md
|
@@ -212,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
212
211
|
version: '0'
|
213
212
|
requirements: []
|
214
213
|
rubyforge_project:
|
215
|
-
rubygems_version: 2.4.
|
214
|
+
rubygems_version: 2.4.6
|
216
215
|
signing_key:
|
217
216
|
specification_version: 4
|
218
217
|
summary: A straightforward, effective ETL framework.
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ruby-2.1.2
|