forked from majofi/sugarcrm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsugarcrm.gemspec
176 lines (171 loc) · 6.73 KB
/
sugarcrm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sugarcrm"
s.version = "0.9.19"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Carl Hicks", "David Sulc"]
s.date = "2011-12-13"
s.email = "[email protected]"
s.executables = ["sugarcrm"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"Gemfile",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"WATCHLIST.rdoc",
"bin/sugarcrm",
"lib/rails/generators/sugarcrm/config/config_generator.rb",
"lib/rails/generators/sugarcrm/config/templates/initializer.rb",
"lib/rails/generators/sugarcrm/config/templates/sugarcrm.yml",
"lib/sugarcrm.rb",
"lib/sugarcrm/associations.rb",
"lib/sugarcrm/associations/association.rb",
"lib/sugarcrm/associations/association_cache.rb",
"lib/sugarcrm/associations/association_collection.rb",
"lib/sugarcrm/associations/association_methods.rb",
"lib/sugarcrm/associations/associations.rb",
"lib/sugarcrm/attributes.rb",
"lib/sugarcrm/attributes/attribute_methods.rb",
"lib/sugarcrm/attributes/attribute_serializers.rb",
"lib/sugarcrm/attributes/attribute_typecast.rb",
"lib/sugarcrm/attributes/attribute_validations.rb",
"lib/sugarcrm/base.rb",
"lib/sugarcrm/config/sugarcrm.yaml",
"lib/sugarcrm/connection.rb",
"lib/sugarcrm/connection/api/get_available_modules.rb",
"lib/sugarcrm/connection/api/get_document_revision.rb",
"lib/sugarcrm/connection/api/get_entries.rb",
"lib/sugarcrm/connection/api/get_entries_count.rb",
"lib/sugarcrm/connection/api/get_entry.rb",
"lib/sugarcrm/connection/api/get_entry_list.rb",
"lib/sugarcrm/connection/api/get_module_fields.rb",
"lib/sugarcrm/connection/api/get_note_attachment.rb",
"lib/sugarcrm/connection/api/get_relationships.rb",
"lib/sugarcrm/connection/api/get_report_entries.rb",
"lib/sugarcrm/connection/api/get_server_info.rb",
"lib/sugarcrm/connection/api/get_user_id.rb",
"lib/sugarcrm/connection/api/get_user_team_id.rb",
"lib/sugarcrm/connection/api/login.rb",
"lib/sugarcrm/connection/api/logout.rb",
"lib/sugarcrm/connection/api/seamless_login.rb",
"lib/sugarcrm/connection/api/search_by_module.rb",
"lib/sugarcrm/connection/api/set_campaign_merge.rb",
"lib/sugarcrm/connection/api/set_document_revision.rb",
"lib/sugarcrm/connection/api/set_entries.rb",
"lib/sugarcrm/connection/api/set_entry.rb",
"lib/sugarcrm/connection/api/set_note_attachment.rb",
"lib/sugarcrm/connection/api/set_relationship.rb",
"lib/sugarcrm/connection/api/set_relationships.rb",
"lib/sugarcrm/connection/connection.rb",
"lib/sugarcrm/connection/helper.rb",
"lib/sugarcrm/connection/request.rb",
"lib/sugarcrm/connection/response.rb",
"lib/sugarcrm/connection_pool.rb",
"lib/sugarcrm/exceptions.rb",
"lib/sugarcrm/extensions/README.txt",
"lib/sugarcrm/finders.rb",
"lib/sugarcrm/finders/dynamic_finder_match.rb",
"lib/sugarcrm/finders/finder_methods.rb",
"lib/sugarcrm/module.rb",
"lib/sugarcrm/module_methods.rb",
"lib/sugarcrm/session.rb",
"sugarcrm.gemspec",
"test/config_test.yaml",
"test/connection/test_get_available_modules.rb",
"test/connection/test_get_entries.rb",
"test/connection/test_get_entry.rb",
"test/connection/test_get_entry_list.rb",
"test/connection/test_get_module_fields.rb",
"test/connection/test_get_relationships.rb",
"test/connection/test_get_server_info.rb",
"test/connection/test_get_user_id.rb",
"test/connection/test_get_user_team_id.rb",
"test/connection/test_login.rb",
"test/connection/test_logout.rb",
"test/connection/test_set_document_revision.rb",
"test/connection/test_set_entry.rb",
"test/connection/test_set_note_attachment.rb",
"test/connection/test_set_relationship.rb",
"test/extensions_test/patch.rb",
"test/helper.rb",
"test/test_association_collection.rb",
"test/test_associations.rb",
"test/test_connection.rb",
"test/test_connection_pool.rb",
"test/test_finders.rb",
"test/test_module.rb",
"test/test_request.rb",
"test/test_response.rb",
"test/test_session.rb",
"test/test_sugarcrm.rb"
]
s.homepage = "http://github.com/chicks/sugarcrm"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.11"
s.summary = "A less clunky way to interact with SugarCRM via REST."
s.test_files = [
"test/config_test.yaml",
"test/connection/test_get_available_modules.rb",
"test/connection/test_get_entries.rb",
"test/connection/test_get_entry.rb",
"test/connection/test_get_entry_list.rb",
"test/connection/test_get_module_fields.rb",
"test/connection/test_get_relationships.rb",
"test/connection/test_get_server_info.rb",
"test/connection/test_get_user_id.rb",
"test/connection/test_get_user_team_id.rb",
"test/connection/test_login.rb",
"test/connection/test_logout.rb",
"test/connection/test_set_document_revision.rb",
"test/connection/test_set_entry.rb",
"test/connection/test_set_note_attachment.rb",
"test/connection/test_set_relationship.rb",
"test/extensions_test/patch.rb",
"test/helper.rb",
"test/test_association_collection.rb",
"test/test_associations.rb",
"test/test_connection.rb",
"test/test_connection_pool.rb",
"test/test_finders.rb",
"test/test_module.rb",
"test/test_request.rb",
"test/test_response.rb",
"test/test_session.rb",
"test/test_sugarcrm.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.10"])
s.add_runtime_dependency(%q<i18n>, [">= 0"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
else
s.add_dependency(%q<activesupport>, [">= 2.3.10"])
s.add_dependency(%q<i18n>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
end
else
s.add_dependency(%q<activesupport>, [">= 2.3.10"])
s.add_dependency(%q<i18n>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
end
end