jdbc-mssql-azure 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ doc/
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use jruby@jdbc-mssql-azure --create
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in jdbc-mssql-azure.gemspec
4
+ gemspec
@@ -0,0 +1,4 @@
1
+ jdbc-mssql-azure
2
+ ================
3
+
4
+ A gem that includes the Microsoft provided SQL Server java driver. Useful for connecting to azure from Rails.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "jdbc-mssql-azure/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "jdbc-mssql-azure"
7
+ s.version = Jdbc::Mssql::Azure::VERSION
8
+ s.authors = ["Mike Emery"]
9
+ s.email = ["philodoxx@gmail.com"]
10
+ s.homepage = ""
11
+ s.summary = %q{Microsoft provided java driver for connecting to SQL server.}
12
+ s.description = %q{SQL Azure wont let you connect using JTDS :( }
13
+
14
+ s.rubyforge_project = "jdbc-mssql-azure"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ # specify any dependencies here; for example:
22
+ # s.add_development_dependency "rspec"
23
+ # s.add_runtime_dependency "rest-client"
24
+ end
@@ -0,0 +1,15 @@
1
+ require "jdbc-mssql-azure/version"
2
+
3
+ module Jdbc
4
+ module Mssql
5
+ module Azure
6
+ # Your code goes here...
7
+ end
8
+ end
9
+ end
10
+
11
+ if RUBY_PLATFORM =~ /java/
12
+ require "sqljdbc4.jar"
13
+ elsif $VERBOSE
14
+ warn "jdbc-mssql-azure is only for use with JRuby"
15
+ end
@@ -0,0 +1,7 @@
1
+ module Jdbc
2
+ module Mssql
3
+ module Azure
4
+ VERSION = "0.0.1"
5
+ end
6
+ end
7
+ end
Binary file
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jdbc-mssql-azure
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Mike Emery
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-04-19 00:00:00 Z
14
+ dependencies: []
15
+
16
+ description: "SQL Azure wont let you connect using JTDS :( "
17
+ email:
18
+ - philodoxx@gmail.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ 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: ""
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ 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"
55
+ requirements: []
56
+
57
+ rubyforge_project: jdbc-mssql-azure
58
+ rubygems_version: 1.8.15
59
+ signing_key:
60
+ specification_version: 3
61
+ summary: Microsoft provided java driver for connecting to SQL server.
62
+ test_files: []
63
+