activerecord-jdbcmssql-adapter-ficoh 1.3.21
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 +7 -0
- data/History.txt +0 -0
- data/LICENSE.txt +21 -0
- data/README.rdoc +21 -0
- data/Rakefile +3 -0
- data/activerecord-jdbcmssql-adapter.gemspec +24 -0
- data/lib/active_record/connection_adapters/jdbcmssql_adapter.rb +5 -0
- data/lib/activerecord-jdbcmssql-adapter.rb +2 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a4d2bd128671e0c46586a6608983c5446e9bf94b
|
4
|
+
data.tar.gz: 6407e34d49bae66b98a16e52e2348dc3340d8d94
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5e18ba6d99d25502c4875faf7350cc915c96b87d7c3a45a81f1da8cf145aad1a9bcaf239998c97f333979e59df5ec44c20a03a9798ae3f6b15fe1617e68110f4
|
7
|
+
data.tar.gz: 980c5bcff19bd71960c9953aca76fe9f55bee8b7fe98d4d59e1ebb3a490a7f6f68cc24cf8bdd50771e7962eeb7ab9accdaecc6870ff1ba7d28775697a9b95147
|
data/History.txt
ADDED
File without changes
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Copyright (c) 2006-2007 Nick Sieger <nick@nicksieger.com>
|
2
|
+
Copyright (c) 2006-2007 Ola Bini <ola@ologix.com>
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
= activerecord-jdbcmssql-adapter
|
2
|
+
|
3
|
+
* https://github.com/jruby/activerecord-jdbc-adapter/
|
4
|
+
|
5
|
+
== DESCRIPTION:
|
6
|
+
|
7
|
+
This is an ActiveRecord driver for MS-SQL using JDBC running under JRuby.
|
8
|
+
|
9
|
+
== SQL Azure
|
10
|
+
|
11
|
+
To use this driver with SQL Azure you will need to follow these steps:
|
12
|
+
1. Add the official Microsoft SQL Server JDBC driver to your classpath. The quick way is to include http://rubygems.org/gems/jdbc-mssql-azure in your gemfile.
|
13
|
+
If you want to include the jar manually it can be downloaded here http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=19847
|
14
|
+
2. Configure your database.yml as follows:
|
15
|
+
|
16
|
+
production:
|
17
|
+
adapter: jdbcmssql
|
18
|
+
driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
19
|
+
url: 'jdbc:sqlserver://servername.database.windows.net;databaseName=databasename'
|
20
|
+
username: foo@servername
|
21
|
+
password: bar
|
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
arjdbc_lib = File.expand_path("../../lib", __FILE__)
|
3
|
+
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
|
4
|
+
require 'arjdbc/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "activerecord-jdbcmssql-adapter-ficoh"
|
8
|
+
gem.version = version = ArJdbc::VERSION
|
9
|
+
gem.platform = Gem::Platform::RUBY
|
10
|
+
|
11
|
+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
|
12
|
+
gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
|
13
|
+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
|
14
|
+
gem.license = "BSD"
|
15
|
+
|
16
|
+
gem.rubyforge_project = %q{jruby-extras}
|
17
|
+
gem.summary = %q{MS_SQL JDBC adapter for JRuby on Rails.}
|
18
|
+
|
19
|
+
gem.require_paths = ["lib"]
|
20
|
+
gem.files = `git ls-files`.split("\n") # assuming . working directory
|
21
|
+
|
22
|
+
gem.add_dependency 'activerecord-jdbc-adapter-ficoh', "~>#{version}"
|
23
|
+
gem.add_dependency 'jdbc-jtds', '>= 1.2.7' #, '< 1.4.0'
|
24
|
+
end
|
@@ -0,0 +1,5 @@
|
|
1
|
+
# NOTE: required by AR resolver with 'jdbcmssql' adapter configuration :
|
2
|
+
# we should make sure a jdbcmssql_connection is setup on ActiveRecord::Base
|
3
|
+
require 'arjdbc/mssql'
|
4
|
+
# all setup should be performed in arjdbc/mssql to avoid circular requires
|
5
|
+
# this should not be required from any loads perormed by arjdbc/mssql code
|
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activerecord-jdbcmssql-adapter-ficoh
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.3.21
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-05-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 1.3.21
|
19
|
+
name: activerecord-jdbc-adapter-ficoh
|
20
|
+
prerelease: false
|
21
|
+
type: :runtime
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.3.21
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.2.7
|
33
|
+
name: jdbc-jtds
|
34
|
+
prerelease: false
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.2.7
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- nick@nicksieger.com
|
44
|
+
- ola.bini@gmail.com
|
45
|
+
- self@kares.org
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- History.txt
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.rdoc
|
53
|
+
- Rakefile
|
54
|
+
- activerecord-jdbcmssql-adapter.gemspec
|
55
|
+
- lib/active_record/connection_adapters/jdbcmssql_adapter.rb
|
56
|
+
- lib/activerecord-jdbcmssql-adapter.rb
|
57
|
+
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
58
|
+
licenses:
|
59
|
+
- BSD
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project: jruby-extras
|
77
|
+
rubygems_version: 2.4.8
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: MS_SQL JDBC adapter for JRuby on Rails.
|
81
|
+
test_files: []
|