ginjo-rfm 1.4.2

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,13 @@
1
+ module Rfm
2
+ VERSION_DEFAULT = '1.4.2.pre'
3
+ VERSION = File.read(File.join(File.expand_path(File.dirname(File.dirname(File.dirname(__FILE__)))), 'VERSION')) rescue VERSION_DEFAULT
4
+ # if File.exists?('../../VERSION')
5
+ # File.read('../../VERSION')
6
+ # else
7
+ # '1.4.2.pre'
8
+ # end
9
+ module Version # :nodoc: all
10
+ MAJOR, MINOR, PATCH, BUILD = VERSION.split('.')
11
+ NUMBERS = [ MAJOR, MINOR, PATCH, BUILD ]
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ginjo-rfm
3
+ version: !ruby/object:Gem::Version
4
+ hash: 3
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 4
9
+ - 2
10
+ version: 1.4.2
11
+ platform: ruby
12
+ authors:
13
+ - Geoff Coffey
14
+ - Mufaddal Khumri
15
+ - Atsushi Matsuo
16
+ - Larry Sprock
17
+ - Bill Richardson
18
+ autorequire:
19
+ bindir: bin
20
+ cert_chain: []
21
+
22
+ date: 2011-11-16 00:00:00 Z
23
+ dependencies:
24
+ - !ruby/object:Gem::Dependency
25
+ name: nokogiri
26
+ prerelease: false
27
+ requirement: &id001 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ hash: 3
33
+ segments:
34
+ - 0
35
+ version: "0"
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ description: Rfm brings your FileMaker data to Ruby. Now your Ruby scripts and Rails applications can talk directly to your FileMaker server.
39
+ email: http://groups.google.com/group/rfmcommunity
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files:
45
+ - LICENSE
46
+ - README.md
47
+ files:
48
+ - lib/rfm.rb
49
+ - lib/rfm/database.rb
50
+ - lib/rfm/error.rb
51
+ - lib/rfm/layout.rb
52
+ - lib/rfm/metadata/field.rb
53
+ - lib/rfm/metadata/field_control.rb
54
+ - lib/rfm/metadata/script.rb
55
+ - lib/rfm/metadata/value_list_item.rb
56
+ - lib/rfm/record.rb
57
+ - lib/rfm/resultset.rb
58
+ - lib/rfm/server.rb
59
+ - lib/rfm/utilities/case_insensitive_hash.rb
60
+ - lib/rfm/utilities/factory.rb
61
+ - lib/rfm/version.rb
62
+ - LICENSE
63
+ - README.md
64
+ homepage: http://sixfriedrice.com/wp/products/rfm/
65
+ licenses: []
66
+
67
+ post_install_message:
68
+ rdoc_options:
69
+ - --line-numbers
70
+ - --main
71
+ - README.rdoc
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ hash: 3
80
+ segments:
81
+ - 0
82
+ version: "0"
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ hash: 3
89
+ segments:
90
+ - 0
91
+ version: "0"
92
+ requirements: []
93
+
94
+ rubyforge_project:
95
+ rubygems_version: 1.8.10
96
+ signing_key:
97
+ specification_version: 3
98
+ summary: Ruby to Filemaker adapter
99
+ test_files: []
100
+