gd_bam 0.1.29 → 0.1.30
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/bin/bam +4 -0
- data/lib/bam/version.rb +1 -1
- metadata +1 -1
data/bin/bam
CHANGED
|
@@ -257,6 +257,8 @@ command :project do |c|
|
|
|
257
257
|
pid = case options[:blueprint]
|
|
258
258
|
when "goodsales"
|
|
259
259
|
"nt935rwzls50zfqwy6dh62tabu8h0ocy"
|
|
260
|
+
when "box"
|
|
261
|
+
"n1zoyqvahupyxfxv35nzo0ernax69odm"
|
|
260
262
|
end
|
|
261
263
|
|
|
262
264
|
params = PARAMS.merge({:token => options[:token]})
|
|
@@ -294,6 +296,8 @@ command :scaffold do |c|
|
|
|
294
296
|
case options[:blueprint]
|
|
295
297
|
when "goodsales"
|
|
296
298
|
system "git clone git://github.com/gooddata/goodsales_base.git #{directory}"
|
|
299
|
+
when "box"
|
|
300
|
+
fail "ETL FOR BOX NOT IMPLEMENTED"
|
|
297
301
|
end
|
|
298
302
|
end
|
|
299
303
|
when "flow"
|
data/lib/bam/version.rb
CHANGED