refine-ruby 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.textile +4 -4
- data/lib/refine/version.rb +2 -2
- metadata +1 -2
- data/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: 23013da310f5a03e05cbc6cc3152567257b64184
|
4
|
+
data.tar.gz: fd29dd48c328ef841812d4bc983575bf51d94136
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 621bb2bd7aa876aabe148f6214c602328b832ae09b2f35b9e0388cbdc4602cab81a9e8b2b849ac3ec8ed660679091fde2b582d0f319e9e470eb8643083d89f8a
|
7
|
+
data.tar.gz: 1646755790ba2c42cfe03c39f4dda3e259754758c6a3b0f9f498d4333b26c09f59520d6e800b16d3f978cd556b8d1bbabdd011a0c2fc1394f127ddeae7c64f57
|
data/README.textile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<h1>
|
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
|
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)
|
84
|
-
|
84
|
+
Copyright (c) 2018 David Huynh, Max Ogden & Distill Analytics Inc.
|
data/lib/refine/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
VERSION = "0.2.
|
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.
|
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
|