jruby-spymemcached 0.0.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.
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{jruby-spymemcached}
5
+ s.version = "0.0.1"
6
+ s.authors = ["Charles Oliver Nutter"]
7
+ s.date = Time.now.strftime('%Y-%m-%d')
8
+ s.description = %q{A JRuby extension wrapping the spymemcached library}
9
+ s.email = ["headius@headius.com"]
10
+ s.extra_rdoc_files = Dir['*.txt']
11
+ s.files =
12
+ Dir['target/*.jar'] +
13
+ Dir['src/main/ruby/**'] +
14
+ Dir['src/test/ruby/**'] +
15
+ Dir['{*.md,*.gemspec,Rakefile}']
16
+ s.homepage = %q{http://github.com/headius/jruby-spymemcached}
17
+ s.require_paths = ['target', 'src/main/ruby']
18
+ s.summary = %q{A JRuby extension wrapping the spymemcached library}
19
+ end
@@ -0,0 +1,8 @@
1
+ module JRubySpymemcached
2
+ VERSION = '0.0.1'
3
+ end
4
+
5
+ require "jruby-memcached-#{JRubySpymemcached::VERSION}.jar"
6
+ require 'jruby'
7
+
8
+ com.headius.spymemcached.SpymemcachedLibrary.new.load(JRuby.runtime, false)
Binary file
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jruby-spymemcached
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Charles Oliver Nutter
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-12-20 00:00:00 Z
14
+ dependencies: []
15
+
16
+ description: A JRuby extension wrapping the spymemcached library
17
+ email:
18
+ - headius@headius.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files: []
24
+
25
+ files:
26
+ - target/jruby-memcached-0.0.1.jar
27
+ - target/original-jruby-memcached-0.0.1.jar
28
+ - src/main/ruby/jruby-spymemcached.gemspec
29
+ - src/main/ruby/jruby-spymemcached.rb
30
+ homepage: http://github.com/headius/jruby-spymemcached
31
+ licenses: []
32
+
33
+ post_install_message:
34
+ rdoc_options: []
35
+
36
+ require_paths:
37
+ - target
38
+ - src/main/ruby
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: "0"
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: "0"
51
+ requirements: []
52
+
53
+ rubyforge_project:
54
+ rubygems_version: 1.8.12
55
+ signing_key:
56
+ specification_version: 3
57
+ summary: A JRuby extension wrapping the spymemcached library
58
+ test_files: []
59
+