Commit 01d273bdd184d0107872943e6bde037838e3f94e

Authored by Thiago Ribeiro
1 parent 245f75cf
Exists in rails4 and in 1 other branch deps_rails4

Add gemspec to correct place

vendor/contacts/contacts.gemspec 0 → 100644
... ... @@ -0,0 +1,14 @@
  1 +Gem::Specification.new do |s|
  2 + s.name = "contacts"
  3 + s.version = "1.2.0"
  4 + s.date = "2009-05-06"
  5 + s.summary = "A universal interface to grab contact list information from various providers including Yahoo, Gmail, Hotmail, and Plaxo."
  6 + s.email = "lucas@rufy.com"
  7 + s.homepage = "http://github.com/cardmagic/contacts"
  8 + s.description = "A universal interface to grab contact list information from various providers including Yahoo, Gmail, Hotmail, and Plaxo."
  9 + s.has_rdoc = false
  10 + s.authors = ["Lucas Carlson"]
  11 + s.files = ["LICENSE", "Rakefile", "README", "examples/grab_contacts.rb", "lib/contacts.rb", "lib/contacts/base.rb", "lib/contacts/json_picker.rb", "lib/contacts/gmail.rb", "lib/contacts/aol.rb", "lib/contacts/hotmail.rb", "lib/contacts/plaxo.rb", "lib/contacts/yahoo.rb"]
  12 + s.add_dependency("json", ">= 1.1.1")
  13 + s.add_dependency('gdata', '>= 1.1.1')
  14 +end
... ...
vendor/gdata/gdata.gemspec 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +Gem::Specification.new do |s|
  2 + s.name = "gdata"
  3 + s.version = "1.1.1"
  4 + s.summary = 'This gem provides a set of wrappers designed to make it easy to work with the Google Data APIs.'
  5 + s.authors = ['Jeff Fisher', 'Trevor Johns']
  6 +end
... ...
vendor/plugins/action_tracker/action_tracker.gemspec 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +Gem::Specification.new do |s|
  2 + s.name = "action_tracker"
  3 + s.version = "0.0.1"
  4 + s.summary = "Track models' actions"
  5 + s.authors = ['Caio SBA']
  6 +end
... ...
vendor/plugins/acts_as_versioned/acts_as_versioned.gemspec 0 → 100644
... ... @@ -0,0 +1,32 @@
  1 +# -*- encoding: utf-8 -*-
  2 +
  3 +Gem::Specification.new do |s|
  4 + s.name = "acts_as_versioned"
  5 + s.version = "3.2.1"
  6 +
  7 + s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
  8 + s.authors = ["Jason Whitehorn"]
  9 + s.date = "2013-05-03"
  10 + s.description = "Active Record model versioning"
  11 + s.email = "jason.whitehorn@gmail.com"
  12 + s.extra_rdoc_files = ["README.md", "lib/acts_as_versioned.rb"]
  13 + s.files = ["Gemfile", "Gemfile.lock", "MIT-LICENSE", "Manifest", "README.md", "RUNNING_UNIT_TESTS", "Rakefile", "acts_as_versioned.gemspec", "acts_as_versioned_plugin.sqlite3.db", "init.rb", "lib/acts_as_versioned.rb"]
  14 + s.homepage = "http://github.com/jwhitehorn/acts_as_versioned"
  15 + s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Acts_as_versioned", "--main", "README.md"]
  16 + s.require_paths = ["lib"]
  17 + s.rubyforge_project = "acts_as_versioned"
  18 + s.rubygems_version = "1.8.25"
  19 + s.summary = "Active Record model versioning"
  20 +
  21 + if s.respond_to? :specification_version then
  22 + s.specification_version = 3
  23 +
  24 + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  25 + s.add_runtime_dependency(%q<activerecord>, [">= 0"])
  26 + else
  27 + s.add_dependency(%q<activerecord>, [">= 0"])
  28 + end
  29 + else
  30 + s.add_dependency(%q<activerecord>, [">= 0"])
  31 + end
  32 +end
... ...
vendor/plugins/kandadaboggu-vote_fu/vote_fu.gemspec 0 → 100644
... ... @@ -0,0 +1,36 @@
  1 +Gem::Specification.new do |s|
  2 + s.name = "kandadaboggu-vote_fu"
  3 + s.version = "0.0.15"
  4 + s.date = "2010-03-08"
  5 + s.summary = "Enhanced vote_fu with numerical voting and total vote caching."
  6 + s.email = "kandadaboggu@gmail.com"
  7 + s.homepage = "http://github.com/kandadaboggu/vote_fu"
  8 + s.description = "Enhanced vote_fu with numerical voting and total vote caching."
  9 + s.has_rdoc = false
  10 + s.authors = ["Peter Jackson", "Cosmin Radoi", "Bence Nagy", "Rob Maddox", "Kandada Boggu"]
  11 + s.files = [ "CHANGELOG.markdown",
  12 + "MIT-LICENSE",
  13 + "README.markdown",
  14 + "generators/vote_fu",
  15 + "generators/vote_fu/vote_fu_generator.rb",
  16 + "generators/vote_fu/templates",
  17 + "generators/vote_fu/templates/migration.rb",
  18 + "init.rb",
  19 + "lib/vote_fu.rb",
  20 + "lib/acts_as_voteable.rb",
  21 + "lib/acts_as_voter.rb",
  22 + "lib/has_karma.rb",
  23 + "lib/models/vote.rb",
  24 + "lib/controllers/votes_controller.rb",
  25 + "test/vote_fu_test.rb",
  26 + "examples/votes_controller.rb",
  27 + "examples/users_controller.rb",
  28 + "examples/voteables_controller.rb",
  29 + "examples/voteable.rb",
  30 + "examples/voteable.html.erb",
  31 + "examples/votes/_voteable_vote.html.erb",
  32 + "examples/votes/create.rjs",
  33 + "examples/routes.rb",
  34 + "rails/init.rb"
  35 + ]
  36 +end
... ...
vendor/plugins/recaptcha/recaptcha.gemspec 0 → 100644
... ... @@ -0,0 +1,65 @@
  1 +# Generated by jeweler
  2 +# DO NOT EDIT THIS FILE DIRECTLY
  3 +# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
  4 +# -*- encoding: utf-8 -*-
  5 +
  6 +Gem::Specification.new do |s|
  7 + s.name = %q{recaptcha}
  8 + s.version = "0.3.2"
  9 +
  10 + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  11 + s.authors = ["Jason L. Perry"]
  12 + s.date = %q{2010-12-20}
  13 + s.description = %q{This plugin adds helpers for the reCAPTCHA API }
  14 + s.email = %q{jasper@ambethia.com}
  15 + s.extra_rdoc_files = [
  16 + "LICENSE",
  17 + "README.rdoc"
  18 + ]
  19 + s.files = [
  20 + "CHANGELOG",
  21 + "LICENSE",
  22 + "README.rdoc",
  23 + "Rakefile",
  24 + "VERSION",
  25 + "init.rb",
  26 + "lib/recaptcha.rb",
  27 + "lib/recaptcha/client_helper.rb",
  28 + "lib/recaptcha/configuration.rb",
  29 + "lib/recaptcha/merb.rb",
  30 + "lib/recaptcha/rails.rb",
  31 + "lib/recaptcha/verify.rb",
  32 + "recaptcha.gemspec",
  33 + "tasks/recaptcha_tasks.rake",
  34 + "test/recaptcha_test.rb",
  35 + "test/verify_recaptcha_test.rb"
  36 + ]
  37 + s.homepage = %q{http://ambethia.com/recaptcha}
  38 + s.require_paths = ["lib"]
  39 + s.rubygems_version = %q{1.3.7}
  40 + s.summary = %q{Helpers for the reCAPTCHA API}
  41 + s.test_files = [
  42 + "test/recaptcha_test.rb",
  43 + "test/verify_recaptcha_test.rb"
  44 + ]
  45 +
  46 + if s.respond_to? :specification_version then
  47 + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
  48 + s.specification_version = 3
  49 +
  50 + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  51 + s.add_development_dependency(%q<mocha>, [">= 0"])
  52 + s.add_development_dependency(%q<activesupport>, [">= 0"])
  53 + s.add_dependency(%q<i18n>, [">= 0"])
  54 + else
  55 + s.add_dependency(%q<mocha>, [">= 0"])
  56 + s.add_dependency(%q<activesupport>, [">= 0"])
  57 + s.add_dependency(%q<i18n>, [">= 0"])
  58 + end
  59 + else
  60 + s.add_dependency(%q<mocha>, [">= 0"])
  61 + s.add_dependency(%q<activesupport>, [">= 0"])
  62 + s.add_dependency(%q<i18n>, [">= 0"])
  63 + end
  64 +end
  65 +
... ...
vendor/plugins/ruby_bosh/ruby_bosh.gemspec 0 → 100644
... ... @@ -0,0 +1,35 @@
  1 +# -*- encoding: utf-8 -*-
  2 +
  3 +Gem::Specification.new do |s|
  4 + s.name = %q{ruby_bosh}
  5 + s.version = "0.5.4"
  6 +
  7 + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  8 + s.authors = ["Pradeep Elankumaran"]
  9 + s.date = %q{2009-04-21}
  10 + s.description = %q{An XMPP BOSH session pre-initializer for Ruby web applications}
  11 + s.email = %q{pradeep@intridea.com}
  12 + s.files = ["VERSION.yml", "lib/ruby_bosh.rb", "spec/ruby_bosh_spec.rb", "spec/spec_helper.rb"]
  13 + s.has_rdoc = true
  14 + s.homepage = %q{http://github.com/skyfallsin/ruby_bosh}
  15 + s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
  16 + s.require_paths = ["lib"]
  17 + s.rubygems_version = %q{1.3.1}
  18 + s.summary = %q{A BOSH session pre-initializer for Ruby web applications}
  19 +
  20 + if s.respond_to? :specification_version then
  21 + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
  22 + s.specification_version = 2
  23 +
  24 + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
  25 + s.add_runtime_dependency(%q<builder>, [">= 0"])
  26 + s.add_runtime_dependency(%q<rest-client>, [">= 0"])
  27 + else
  28 + s.add_dependency(%q<builder>, [">= 0"])
  29 + s.add_dependency(%q<rest-client>, [">= 0"])
  30 + end
  31 + else
  32 + s.add_dependency(%q<builder>, [">= 0"])
  33 + s.add_dependency(%q<rest-client>, [">= 0"])
  34 + end
  35 +end
... ...