Sha256: c54671625a9e736391be1bdd3e2ca41c486c4ac02606b27be3ac4fab25c7279c
Contents?: true
Size: 891 Bytes
Versions: 4
Compression:
Stored size: 891 Bytes
Contents
# -*- encoding: utf-8 -*- arjdbc_lib = File.expand_path("../../lib", __FILE__) $:.push arjdbc_lib unless $:.include?(arjdbc_lib) require 'arjdbc/version' Gem::Specification.new do |s| s.name = "activerecord-jdbcmysql-adapter" s.version = version = ArJdbc::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"] s.description = %q{Install this gem to use MySQL with JRuby on Rails.} s.email = %q{nick@nicksieger.com, ola.bini@gmail.com} s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter} s.rubyforge_project = %q{jruby-extras} s.summary = %q{MySQL JDBC adapter for JRuby on Rails.} s.require_paths = ["lib"] s.files = `git ls-files`.split("\n") # assuming . working directory s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}" s.add_dependency 'jdbc-mysql', '>= 5.1.22' end
Version data entries
4 entries across 4 versions & 1 rubygems