Skip to content

Commit

Permalink
stop ignoring .gemspec
Browse files Browse the repository at this point in the history
facilitates using git repo in Gemfile
  • Loading branch information
davidsulc committed Feb 26, 2011
1 parent 8a8dfe4 commit b5139a0
Show file tree
Hide file tree
Showing 2 changed files with 163 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Expand Up @@ -20,11 +20,10 @@ pkg
Gemfile.lock

## PROJECT::SPECIFIC
*.gemspec

.bundle

lib/sugarcrm/monkey_patches/*.rb

# ignore test config file so each contributor can have his own
test/config.yaml
test/config.yaml
162 changes: 162 additions & 0 deletions sugarcrm.gemspec
@@ -0,0 +1,162 @@
# 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 = %q{sugarcrm}
s.version = "0.9.11"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Carl Hicks", "David Sulc"]
s.date = %q{2011-02-25}
s.default_executable = %q{sugarcrm}
s.email = %q{carl.hicks@gmail.com}
s.executables = ["sugarcrm"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"bin/sugarcrm",
"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/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",
"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_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_module.rb",
"test/test_response.rb",
"test/test_session.rb",
"test/test_sugarcrm.rb"
]
s.homepage = %q{http://github.com/chicks/sugarcrm}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A less clunky way to interact with SugarCRM via REST.}
s.test_files = [
"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_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_module.rb",
"test/test_response.rb",
"test/test_session.rb",
"test/test_sugarcrm.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
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>, [">= 3.0.0"])
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>, [">= 3.0.0"])
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

0 comments on commit b5139a0

Please sign in to comment.