activerecord-import-sqlanywhere_jdbc_enhanced 0.1.0 → 0.1.1

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: 26a8d4dc4b7283b6e385ffa24a43ff4f5a515772
4
- data.tar.gz: 78732d4a3a212823453979d4ad5d27176c3e84a2
3
+ metadata.gz: 869c44c395337bb696dc3e8b40c0acd9cb853b65
4
+ data.tar.gz: 629021dbf2459fb40aa8a810bb9d38f9f36398e0
5
5
  SHA512:
6
- metadata.gz: 52147dad0053409244c06330bf564eb7bf189eba2aee54efebc13d3529f66f7c7b8bc026ec27ae4a468be1b3a7480ef2aff929f5b6b4692d6e33831dd66160d9
7
- data.tar.gz: 5d8b060ace6fc58f9e8514729111d9159d8c2f15904254a02121ae9bef8475a8562bda56b9d34fd10cad517c7ac49f8476d4fff104b9a01257407fb6ce2331fe
6
+ metadata.gz: 664eef64d760b94c759389b4b2312b00cd222ce0bb3854877df5110a7a5f24c8a8dea245bed904124905fbddf6bfd9cb96ece6123cfb8a3d89af8954f20f3a77
7
+ data.tar.gz: 4fa8efaffc0b5cff72d7836944e15c9dc14811f2032a9c6fbef1572c0dc32d9e8c4bb314a2b852886b78d7bb11dfb28cad9deaf7efa8bc86cb53d5b8cecc93d6
data/.gitignore CHANGED
@@ -1,9 +1,9 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -1,3 +1,3 @@
1
- language: ruby
2
- rvm:
3
- - 1.9.3
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 TODO: Write your name
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile CHANGED
@@ -1 +1 @@
1
- require "bundler/gem_tasks"
1
+ require "bundler/gem_tasks"
@@ -1,24 +1,24 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'activerecord-import-sqlanywhere_jdbc_enhanced/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "activerecord-import-sqlanywhere_jdbc_enhanced"
8
- spec.version = Activerecord::Import::SqlanywhereJdbcEnhanced::VERSION
9
- spec.authors = ["Sri Kalai"]
10
- spec.email = ["sri.kalai@orchard-systems.co.uk"]
11
-
12
- spec.summary = "Bulk insert extension for ActiveRecord and Sqlanywhere JDBC"
13
- spec.description = "A library for bulk inserting data using ActiveRecord and Sqlanywhere JDBC."
14
- spec.homepage = "https://github.com/SriKalai/activerecord-import-sqlanywhere_jdbc_enhanced"
15
- spec.license = "MIT"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
21
-
22
- spec.add_development_dependency "bundler", "~> 1.9"
23
- spec.add_development_dependency "rake", "~> 10.0"
24
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'activerecord-import-sqlanywhere_jdbc_enhanced/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "activerecord-import-sqlanywhere_jdbc_enhanced"
8
+ spec.version = Activerecord::Import::SqlanywhereJdbcEnhanced::VERSION
9
+ spec.authors = ["Sri Kalai"]
10
+ spec.email = ["sri.kalai@orchard-systems.co.uk"]
11
+
12
+ spec.summary = "Bulk insert extension for ActiveRecord and Sqlanywhere JDBC"
13
+ spec.description = "A library for bulk inserting data using ActiveRecord and Sqlanywhere JDBC."
14
+ spec.homepage = "https://github.com/SriKalai/activerecord-import-sqlanywhere_jdbc_enhanced"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.9"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
@@ -1,7 +1,7 @@
1
- module Activerecord
2
- module Import
3
- module SqlanywhereJdbcEnhanced
4
- VERSION = "0.1.0"
5
- end
6
- end
7
- end
1
+ module Activerecord
2
+ module Import
3
+ module SqlanywhereJdbcEnhanced
4
+ VERSION = "0.1.1"
5
+ end
6
+ end
7
+ end
@@ -2,5 +2,6 @@ require "active_record/connection_adapters/sqlanywhere_jdbc_in4systems_adapter"
2
2
  require "activerecord-import/adapters/sqlanywhere_jdbc_enhanced_adapter"
3
3
 
4
4
  class ActiveRecord::ConnectionAdapters::SqlanywhereJdbcIn4systemsAdapter
5
- include ActiveRecord::Import::SqlAnywhereJdbcEnhancedAdapter
5
+ include ActiveRecord::Import::SqlanywhereJdbcEnhancedAdapter
6
+ include ActiveRecord::Import::ImportSupport
6
7
  end
metadata CHANGED
@@ -1,58 +1,58 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-import-sqlanywhere_jdbc_enhanced
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sri Kalai
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-27 00:00:00.000000000 Z
11
+ date: 2020-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ~>
18
17
  - !ruby/object:Gem::Version
19
18
  version: '1.9'
20
- type: :development
19
+ name: bundler
21
20
  prerelease: false
21
+ type: :development
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.9'
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
- - - "~>"
30
+ - - ~>
32
31
  - !ruby/object:Gem::Version
33
32
  version: '10.0'
34
- type: :development
33
+ name: rake
35
34
  prerelease: false
35
+ type: :development
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: A library for bulk inserting data using ActiveRecord and Sqlanywhere
42
- JDBC.
41
+ description: A library for bulk inserting data using ActiveRecord and Sqlanywhere JDBC.
43
42
  email:
44
43
  - sri.kalai@orchard-systems.co.uk
45
44
  executables: []
46
45
  extensions: []
47
46
  extra_rdoc_files: []
48
47
  files:
49
- - ".gitignore"
50
- - ".travis.yml"
48
+ - .gitignore
49
+ - .travis.yml
51
50
  - Gemfile
52
51
  - LICENSE
53
52
  - LICENSE.txt
54
53
  - README.md
55
54
  - Rakefile
55
+ - activerecord-import-sqlanywhere_jdbc_enhanced-0.1.0.gem
56
56
  - activerecord-import-sqlanywhere_jdbc_enhanced.gemspec
57
57
  - lib/activerecord-import-sqlanywhere_jdbc_enhanced.rb
58
58
  - lib/activerecord-import-sqlanywhere_jdbc_enhanced/version.rb
@@ -62,24 +62,24 @@ homepage: https://github.com/SriKalai/activerecord-import-sqlanywhere_jdbc_enhan
62
62
  licenses:
63
63
  - MIT
64
64
  metadata: {}
65
- post_install_message:
65
+ post_install_message:
66
66
  rdoc_options: []
67
67
  require_paths:
68
68
  - lib
69
69
  required_ruby_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
- - - ">="
71
+ - - '>='
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
- - - ">="
76
+ - - '>='
77
77
  - !ruby/object:Gem::Version
78
78
  version: '0'
79
79
  requirements: []
80
- rubyforge_project:
81
- rubygems_version: 2.4.7
82
- signing_key:
80
+ rubyforge_project:
81
+ rubygems_version: 2.1.9
82
+ signing_key:
83
83
  specification_version: 4
84
84
  summary: Bulk insert extension for ActiveRecord and Sqlanywhere JDBC
85
85
  test_files: []