zillabyte-cli 0.9.30 → 0.9.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OWVhMDEyNGMyMGJhZmNlYzc0OGVmMTI3NTU4MWNiM2QzZTdlMTczYQ==
4
+ ZWFmNWQ5M2M0MWUwMWNlYjIzNjJkZjRhZjEzODdlZTBhZWY5MjFjZA==
5
5
  data.tar.gz: !binary |-
6
- ZDdjNGE1YzI3MWI5ZDFhNTVkOWJkNDM4ZGRiZDFmOTYzZDdjNTViYg==
6
+ NDUxNzRjZGZmMGY2ZWViZTVmYTQxZGExZDE3MGNiOTVkZWYwOTljNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MDUzY2I3NTAzYmNmZDM2NGI5NzdjZTNlZDE1NmViZWQ1NzViYTBmODQxZTA2
10
- Yjg5NDM3MDYzYzFiOGVmNzBjM2NiMzE3MWMyOTkzYjY1MGE5ZTZiYzQzNDhh
11
- ZDM2N2VmZDQyNmQzMWJiMWIwMjY5ZWY1NjFmODQyODFiODk3N2M=
9
+ NDIzZTQ2NmIxZWE5OTUyZmJlYmZiY2Q0ZDM4M2MyNTRlYTcxNjg3YTk4NmZj
10
+ YjM1ZDNiMjI1ZTViNmZkZmQzMmVkOTBhYmEwY2I1ZTQ2ZjhjZmFlNWIwMTYz
11
+ M2VhY2JiMTA2NWJiMGRkMjkyMzQ3NGNiZmZjMzgyMWY2NWU3ODY=
12
12
  data.tar.gz: !binary |-
13
- NGViY2I0YzU5OGUzNWExMzhkYTg5MGQ4NTI4NmEzZjQ5YzY5ZTE0ZjVkYjMy
14
- M2IxMjI0MTRmNDM4ZDE3MDYzMzFlNThmZWEzN2M1OGQwZmVmZmJkMjRjZDIz
15
- MGFhMWU3ZGFkNTM1MzRjOWM0YTg0M2M1Y2NhZTVmMTRiYWQ1MjY=
13
+ MGM2Y2IzNGM1MTJmZjU3MDhiYTg2NWUzMmZiNDM0NmU1MGQwMWJlOTVmZjA0
14
+ ZWVlNWRlZDk5MTJmYWZmNzQzZDY5YThiNzY0NTllZjc2YTNmMGVkZjU2MDc2
15
+ NWE2YzFlNTkzNDE3M2RkYjdkMTkyMDQyZWNmMzI0M2M0Mjc1OGQ=
@@ -1,5 +1,5 @@
1
1
  module Zillabyte
2
2
  module CLI
3
- VERSION = "0.9.30"
3
+ VERSION = "0.9.31"
4
4
  end
5
5
  end
@@ -103,7 +103,6 @@ class Zillabyte::Command::RPC < Zillabyte::Command::Flows
103
103
  end
104
104
  alias_command "execute", "rpc:start"
105
105
  alias_command "executes", "rpc:start"
106
- alias_command "rpc", "rpc:start"
107
106
 
108
107
 
109
108
  # rpc:results ID RUN_ID
@@ -25,7 +25,7 @@ zillabyte.simple_function({
25
25
  * web page in our known universe. Your function will have access
26
26
  * to two fields: URL and HTML
27
27
  */
28
- matches: "select * from web_pages",
28
+ matches: "homepages",
29
29
 
30
30
  /**
31
31
  * This directive tells Zillabyte what kind of data your function
@@ -12,6 +12,6 @@ def execute(controller, tup):
12
12
  return
13
13
 
14
14
  app = zillabyte.app(name = "hello_world")
15
- app.source(matches = "select * from web_pages")\
15
+ app.source(matches = "homepages")\
16
16
  .each(execute = execute)\
17
17
  .sink(name = "has_hello_world", columns = [{"url":"string"}])
@@ -20,13 +20,13 @@ require "zillabyte"
20
20
  # Create an app
21
21
  app = Zillabyte.app("hello_world")
22
22
 
23
- # Source from the 'web_pages' dataset
24
- stream = app.source("web_pages")
23
+ # Source from the 'homepages' dataset
24
+ stream = app.source("homepages")
25
25
 
26
26
  # ...
27
27
  ```
28
28
 
29
- The above [example](http://docs.zillabyte.com/quickstart/hello_world/) will source data from the 'web_pages' dataset. This particular dataset happens to be an [Open Dataset](http://zillabyte.com/data) and is open to all users.
29
+ The above [example](http://docs.zillabyte.com/quickstart/hello_world/) will source data from the 'homepages' dataset. This particular dataset happens to be an [Open Dataset](http://zillabyte.com/data) and is open to all users.
30
30
 
31
31
  You are of course free to create private datasets that will not be accessible to the public. To do so, use the `zillabyte data` commands.
32
32
 
@@ -4,7 +4,7 @@
4
4
  require 'zillabyte'
5
5
 
6
6
  Zillabyte.app("<%= name %>")
7
- .source("web_pages")
7
+ .source("homepages")
8
8
  .each{ |page|
9
9
  if page['html'].include? "<%= name %>"
10
10
  emit :url => page['url']
@@ -25,7 +25,7 @@ zillabyte.simple_function({
25
25
  * web page in our known universe. Your function will have access
26
26
  * to two fields: URL and HTML
27
27
  */
28
- matches: "select * from web_pages",
28
+ matches: "homepages",
29
29
 
30
30
  /**
31
31
  * This directive tells Zillabyte what kind of data your function
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zillabyte-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.30
4
+ version: 0.9.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - zillabyte
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-14 00:00:00.000000000 Z
11
+ date: 2014-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake