jdbc-mssql-azure 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8759ae7ddb886c6fbe83731298acca2960475541
4
+ data.tar.gz: 751640a39a4933c2f924604cb94b32a361cbcb36
5
+ SHA512:
6
+ metadata.gz: 4518559327c636eae82f92e844f4128f871991e407cefe7464a4b25e024735f3a3f51fef6a79e02c7ed1f57d2d25797c940005197ca9d0e8c47978a03c6bb858
7
+ data.tar.gz: 6d993301a3aa93589caacb2b9eae41884a6952c214e0c3e6fb2bfc52ef16f46089ca72efb9ef823a008cf424cb0657d5b7b69f13150c54ffbbd8bae61152f6ff
data/README.md CHANGED
@@ -1,4 +1,14 @@
1
1
  jdbc-mssql-azure
2
2
  ================
3
3
 
4
- A gem that includes the Microsoft provided SQL Server java driver. Useful for connecting to azure from Rails.
4
+ A gem that includes the Microsoft provided SQL Server java driver. Useful for connecting to azure from Rails.
5
+
6
+ Using this with JRuby and Rails
7
+ ===============================
8
+
9
+ production:
10
+ adapter: jdbcmssql
11
+ driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
12
+ url: 'jdbc:sqlserver://mydatabase.database.windows.net;databaseName=my_database'
13
+ username: foo@mydatabase.database.windows.net
14
+ password: bar
@@ -1,7 +1,7 @@
1
1
  module Jdbc
2
2
  module Mssql
3
3
  module Azure
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
6
6
  end
7
7
  end
Binary file
metadata CHANGED
@@ -1,63 +1,52 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mssql-azure
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.0.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
6
5
  platform: ruby
7
- authors:
8
- - Mike Emery
9
- autorequire:
6
+ authors:
7
+ - Mike Emery
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2012-04-19 00:00:00 Z
11
+ date: 2014-03-14 00:00:00.000000000 Z
14
12
  dependencies: []
15
-
16
- description: "SQL Azure wont let you connect using JTDS :( "
17
- email:
18
- - philodoxx@gmail.com
13
+ description: 'SQL Azure wont let you connect using JTDS :( '
14
+ email:
15
+ - philodoxx@gmail.com
19
16
  executables: []
20
-
21
17
  extensions: []
22
-
23
18
  extra_rdoc_files: []
24
-
25
- files:
26
- - .gitignore
27
- - .rvmrc
28
- - Gemfile
29
- - README.md
30
- - Rakefile
31
- - jdbc-mssql-azure.gemspec
32
- - lib/jdbc-mssql-azure.rb
33
- - lib/jdbc-mssql-azure/version.rb
34
- - lib/sqljdbc4.jar
35
- homepage: ""
19
+ files:
20
+ - .gitignore
21
+ - .rvmrc
22
+ - Gemfile
23
+ - README.md
24
+ - Rakefile
25
+ - jdbc-mssql-azure.gemspec
26
+ - lib/jdbc-mssql-azure.rb
27
+ - lib/jdbc-mssql-azure/version.rb
28
+ - lib/sqljdbc4.jar
29
+ homepage: ''
36
30
  licenses: []
37
-
38
- post_install_message:
31
+ metadata: {}
32
+ post_install_message:
39
33
  rdoc_options: []
40
-
41
- require_paths:
42
- - lib
43
- required_ruby_version: !ruby/object:Gem::Requirement
44
- none: false
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: "0"
49
- required_rubygems_version: !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: "0"
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
55
46
  requirements: []
56
-
57
47
  rubyforge_project: jdbc-mssql-azure
58
- rubygems_version: 1.8.15
59
- signing_key:
60
- specification_version: 3
48
+ rubygems_version: 2.2.2
49
+ signing_key:
50
+ specification_version: 4
61
51
  summary: Microsoft provided java driver for connecting to SQL server.
62
52
  test_files: []
63
-