refine-ruby 0.2.3 → 0.2.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90445375e06239ea86e5efe797df975e77e0e444
4
- data.tar.gz: 152bfcc5e53cb038d66dcbac0094bf9b4013a269
3
+ metadata.gz: 23013da310f5a03e05cbc6cc3152567257b64184
4
+ data.tar.gz: fd29dd48c328ef841812d4bc983575bf51d94136
5
5
  SHA512:
6
- metadata.gz: 6e81563abbaa34deccd74ce415dbd85efee6bba27a7cfc958b3ff947fd5d5014c15d5b80de6b3fb1aa4c621d1a97ee87faa5de5abfacfc6d73d4778a0f8af2c6
7
- data.tar.gz: eed9c6bd04c94d093a30630081783b919760683d4704a728f86e283cbf64335e0f350db3fd03e1ad4e1b3563a10a09524134fbcb9339f4811395e28f9dd12d10
6
+ metadata.gz: 621bb2bd7aa876aabe148f6214c602328b832ae09b2f35b9e0388cbdc4602cab81a9e8b2b849ac3ec8ed660679091fde2b582d0f319e9e470eb8643083d89f8a
7
+ data.tar.gz: 1646755790ba2c42cfe03c39f4dda3e259754758c6a3b0f9f498d4333b26c09f59520d6e800b16d3f978cd556b8d1bbabdd011a0c2fc1394f127ddeae7c64f57
@@ -1,4 +1,4 @@
1
- <h1>google-refine</h1> is a Ruby Gem client library for "OpenRefine":http://openrefine.org. It was written for Google Refine 2.x, but should work with OpenRefine as well.
1
+ <h1>refine-ruby</h1> is a Ruby Gem client library for "OpenRefine":http://openrefine.org. It was written for Google Refine 2.x, but should work with OpenRefine as well.
2
2
 
3
3
  If you want to port this to another language, check out the "Refine API":https://github.com/maxogden/refine-python/wiki/Refine-API documentation.
4
4
 
@@ -6,7 +6,7 @@ NOTE: The Refine client/server protocol is an internal API which is subject to c
6
6
 
7
7
  h2. Install
8
8
 
9
- @gem install google-refine@
9
+ @gem install refine-ruby@
10
10
 
11
11
  h2. Example
12
12
 
@@ -60,6 +60,7 @@ You can use this gem to apply the operation set to the raw data from ruby. You w
60
60
 
61
61
  <pre>
62
62
  <code>
63
+ require 'refine'
63
64
  prj = Refine.new('project_name' => 'date cleanup', 'file_name' => 'dates.txt')
64
65
  prj.apply_operations('operations.json')
65
66
  puts prj.export_rows('csv')
@@ -80,5 +81,4 @@ Which outputs:
80
81
 
81
82
  h2. Copyright
82
83
 
83
- Copyright (c) 2011 David Huynh and Max Ogden. See LICENSE for details.
84
-
84
+ Copyright (c) 2018 David Huynh, Max Ogden & Distill Analytics Inc.
@@ -1,3 +1,3 @@
1
- module Refine
2
- VERSION = "0.2.3"
1
+ class Refine
2
+ VERSION = "0.2.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: refine-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Buxton
@@ -128,7 +128,6 @@ files:
128
128
  - LICENSE
129
129
  - README.textile
130
130
  - Rakefile
131
- - VERSION
132
131
  - bin/console
133
132
  - lib/refine.rb
134
133
  - lib/refine/version.rb
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.0.1