st-elsewhere 0.1.0 → 0.1.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.
- data/VERSION +1 -1
- data/lib/st-elsewhere.rb +3 -1
- data/st-elsewhere.gemspec +48 -0
- metadata +2 -2
- data/init.rb +0 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/lib/st-elsewhere.rb
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{st-elsewhere}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Brian Doll"]
|
|
12
|
+
s.date = %q{2009-11-14}
|
|
13
|
+
s.description = %q{This gem provides has_many_elsewhere, an ActiveRecord class method to support many to many relationships in Rails applications, across multiple database connections.}
|
|
14
|
+
s.email = %q{brian@emphaticsolutions.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README.rdoc"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
"MIT-LICENSE",
|
|
20
|
+
"README.rdoc",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION",
|
|
23
|
+
"lib/st-elsewhere.rb",
|
|
24
|
+
"tasks/st-elsewhere_tasks.rake",
|
|
25
|
+
"test/st-elsewhere_test.rb",
|
|
26
|
+
"test/test_helper.rb"
|
|
27
|
+
]
|
|
28
|
+
s.homepage = %q{http://github.com/briandoll/st-elsewhere}
|
|
29
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
30
|
+
s.require_paths = ["lib"]
|
|
31
|
+
s.rubygems_version = %q{1.3.5}
|
|
32
|
+
s.summary = %q{St. Elsewhere supports has_many :through relationships across different databases}
|
|
33
|
+
s.test_files = [
|
|
34
|
+
"test/st-elsewhere_test.rb",
|
|
35
|
+
"test/test_helper.rb"
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
if s.respond_to? :specification_version then
|
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
40
|
+
s.specification_version = 3
|
|
41
|
+
|
|
42
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
43
|
+
else
|
|
44
|
+
end
|
|
45
|
+
else
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: st-elsewhere
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Doll
|
|
@@ -26,8 +26,8 @@ files:
|
|
|
26
26
|
- README.rdoc
|
|
27
27
|
- Rakefile
|
|
28
28
|
- VERSION
|
|
29
|
-
- init.rb
|
|
30
29
|
- lib/st-elsewhere.rb
|
|
30
|
+
- st-elsewhere.gemspec
|
|
31
31
|
- tasks/st-elsewhere_tasks.rake
|
|
32
32
|
- test/st-elsewhere_test.rb
|
|
33
33
|
- test/test_helper.rb
|
data/init.rb
DELETED