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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4202b2eac75a59f2a96af7388e48cd084ca52c44
4
- data.tar.gz: c0b20b5a7f975ed7cef2c272461d16ffff5e1b7b
3
+ metadata.gz: ae0cd5217ad71460f5df5f86b900d7ed65dc53ef
4
+ data.tar.gz: d496b6a3fc2c77dfa67264540b7418a62f4ab81a
5
5
  SHA512:
6
- metadata.gz: b83c5b357e37acf28bf785341b2adbc10ea7640fb15ea3337b32c950e23311ce9a4e0d776764829fa5a656d6bb2cf7f732df85a101339be4c9ae6590e7681d5b
7
- data.tar.gz: eaaab480e8d5f0874aef304d5fc49fcc51fc533566fdfda88150a87ad57df379368f79e47ba91b5e7504c9abde72473e9f75a73004807d2a190863b33ffb623d
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 [ActiveRecord4-Redshift-Adapter](https://github.com/aamine/activerecord4-redshift-adapter) and [PostgreSQLCursor](https://github.com/afair/postgresql_cursor).
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 dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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 install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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 https://github.com/inohiro/redshift_cursor.
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 [MIT License](http://opensource.org/licenses/MIT).
53
+ The gem is available as open source under the terms of the
54
+ [MIT License](http://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module RedshiftCursor
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -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 'activerecord4-redshift-adapter'
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.0.0
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: 2016-06-29 00:00:00.000000000 Z
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: activerecord4-redshift-adapter
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.5.1
121
+ rubygems_version: 2.6.11
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Enable cursor to Redshift on ActiveRecord