redshift_cursor 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -5
- data/lib/redshift_cursor/version.rb +1 -1
- data/redshift_cursor.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae0cd5217ad71460f5df5f86b900d7ed65dc53ef
|
4
|
+
data.tar.gz: d496b6a3fc2c77dfa67264540b7418a62f4ab81a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d687adcc333e90fa3c21f74f749596cc34e1fd26e3e1fdcdf5c67fe1784bbec3d65e7bdb99846d2d7ef0dabb363ff6caef233bf1615ad12bb7ae6c873243348f
|
7
|
+
data.tar.gz: e9ba09864ea7ca324d12e5417d4a3b7b1a541bef5f9abb64ddf35ff6b25881609f6314e969e2ce247bef9d29261aac3b5e7b4be971be56d833de969b23d54f32
|
data/README.md
CHANGED
@@ -4,7 +4,11 @@
|
|
4
4
|
|
5
5
|
Enable cursor to Redshift on ActiveRecord.
|
6
6
|
|
7
|
-
This gem bridges
|
7
|
+
This gem bridges
|
8
|
+
[activerecord-redshift](https://github.com/bricolages/activerecord-redshift)
|
9
|
+
and [PostgreSQLCursor](https://github.com/afair/postgresql_cursor).
|
10
|
+
|
11
|
+
Supporting ActiveRecord version: >= 4.0
|
8
12
|
|
9
13
|
## Installation
|
10
14
|
|
@@ -28,15 +32,23 @@ See PostgreSQLCursor one: https://github.com/afair/postgresql_cursor/blob/master
|
|
28
32
|
|
29
33
|
## Development
|
30
34
|
|
31
|
-
After checking out the repo, run `bin/setup` to install
|
35
|
+
After checking out the repo, run `bin/setup` to install
|
36
|
+
dependencies. You can also run `bin/console` for an interactive prompt
|
37
|
+
that will allow you to experiment.
|
32
38
|
|
33
|
-
To install this gem onto your local machine, run `bundle exec rake
|
39
|
+
To install this gem onto your local machine, run `bundle exec rake
|
40
|
+
install`. To release a new version, update the version number in
|
41
|
+
`version.rb`, and then run `bundle exec rake release`, which will
|
42
|
+
create a git tag for the version, push git commits and tags, and push
|
43
|
+
the `.gem` file to [rubygems.org](https://rubygems.org).
|
34
44
|
|
35
45
|
## Contributing
|
36
46
|
|
37
|
-
Bug reports and pull requests are welcome on GitHub at
|
47
|
+
Bug reports and pull requests are welcome on GitHub at
|
48
|
+
https://github.com/bricolages/redshift_cursor.
|
38
49
|
|
39
50
|
|
40
51
|
## License
|
41
52
|
|
42
|
-
The gem is available as open source under the terms of the
|
53
|
+
The gem is available as open source under the terms of the
|
54
|
+
[MIT License](http://opensource.org/licenses/MIT).
|
data/redshift_cursor.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
|
22
22
|
spec.add_dependency 'pg'
|
23
23
|
spec.add_dependency 'postgresql_cursor'
|
24
|
-
spec.add_dependency '
|
24
|
+
spec.add_dependency 'activerecord-redshift'
|
25
25
|
|
26
26
|
spec.add_development_dependency "bundler", "~> 1.11"
|
27
27
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redshift_cursor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroyuki Inoue
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pg
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: activerecord-redshift
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
120
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.
|
121
|
+
rubygems_version: 2.6.11
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Enable cursor to Redshift on ActiveRecord
|