api_docs.gemspec in api_docs-0.0.4 vs api_docs.gemspec in api_docs-1.0.0

- old
+ new

@@ -2,60 +2,101 @@ # 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{api_docs} - s.version = "0.0.4" + s.name = "api_docs" + s.version = "1.0.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Jack Neto", "The Working Group Inc."] - s.date = %q{2012-05-03} - s.description = %q{} - s.email = %q{jack@twg.ca} + s.authors = ["Oleg Khabarov", "Jack Neto", "The Working Group Inc."] + s.date = "2012-09-11" + s.description = "Generate API documentation using integration tests in Ruby on Rails 3" + s.email = "jack@twg.ca" s.extra_rdoc_files = [ - "LICENSE.txt", + "LICENSE", "README.md" ] s.files = [ - "LICENSE.txt", + "Gemfile", + "LICENSE", "README.md", "Rakefile", "VERSION", "api_docs.gemspec", - "app/assets/javascripts/api_docs.js.coffee", - "app/assets/javascripts/prettify.js", - "app/assets/stylesheets/prettify.css", - "app/views/api_docs/_api_docs.html.haml", - "app/views/api_docs/_curl.html.haml", - "app/views/api_docs/_form.html.haml", - "app/views/api_docs/_panel.html.haml", - "app/views/api_docs/_params.html.haml", - "app/views/api_docs/_response.html.haml", + "app/assets/javascripts/api_docs.js", + "app/assets/stylesheets/api_docs.css", + "app/controllers/api_docs/docs_controller.rb", + "app/views/api_docs/docs/_action.html.erb", + "app/views/api_docs/docs/_request_params.html.erb", + "app/views/api_docs/docs/index.html.erb", + "config/routes.rb", "lib/api_docs.rb", "lib/api_docs/configuration.rb", "lib/api_docs/engine.rb", - "lib/api_docs/railtie.rb" + "lib/api_docs/test_helper.rb", + "script/rails", + "test/api_docs_test.rb", + "test/docs_controller_test.rb", + "test/dummy/README.rdoc", + "test/dummy/Rakefile", + "test/dummy/app/assets/images/glyphicons-halflings-white.png", + "test/dummy/app/assets/images/glyphicons-halflings.png", + "test/dummy/app/assets/javascripts/application.js", + "test/dummy/app/assets/javascripts/bootstrap.min.js", + "test/dummy/app/assets/stylesheets/application.css", + "test/dummy/app/assets/stylesheets/bootstrap.min.css", + "test/dummy/app/controllers/application_controller.rb", + "test/dummy/app/helpers/application_helper.rb", + "test/dummy/app/mailers/.gitkeep", + "test/dummy/app/models/.gitkeep", + "test/dummy/app/views/layouts/application.html.erb", + "test/dummy/config.ru", + "test/dummy/config/application.rb", + "test/dummy/config/boot.rb", + "test/dummy/config/environment.rb", + "test/dummy/config/environments/development.rb", + "test/dummy/config/environments/production.rb", + "test/dummy/config/environments/test.rb", + "test/dummy/config/initializers/backtrace_silencers.rb", + "test/dummy/config/initializers/inflections.rb", + "test/dummy/config/initializers/mime_types.rb", + "test/dummy/config/initializers/secret_token.rb", + "test/dummy/config/initializers/session_store.rb", + "test/dummy/config/initializers/wrap_parameters.rb", + "test/dummy/config/locales/en.yml", + "test/dummy/config/routes.rb", + "test/dummy/lib/assets/.gitkeep", + "test/dummy/log/.gitkeep", + "test/dummy/public/404.html", + "test/dummy/public/422.html", + "test/dummy/public/500.html", + "test/dummy/public/favicon.ico", + "test/dummy/script/rails", + "test/test_helper.rb", + "test/test_helper_test.rb" ] - s.homepage = %q{http://github.com/twg/api_docs} + s.homepage = "http://github.com/twg/api_docs" s.licenses = ["MIT"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} - s.summary = %q{A tool to help you generate documentation for you API} + s.rubygems_version = "1.8.23" + s.summary = "Generate API documentation using integration tests in Ruby on Rails 3" 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<rails>, [">= 3.1.0"]) - s.add_runtime_dependency(%q<bootstrap_builder>, [">= 0.2.6"]) + s.add_runtime_dependency(%q<jquery-rails>, [">= 0"]) + s.add_development_dependency(%q<jeweler>, [">= 0"]) else s.add_dependency(%q<rails>, [">= 3.1.0"]) - s.add_dependency(%q<bootstrap_builder>, [">= 0.2.6"]) + s.add_dependency(%q<jquery-rails>, [">= 0"]) + s.add_dependency(%q<jeweler>, [">= 0"]) end else s.add_dependency(%q<rails>, [">= 3.1.0"]) - s.add_dependency(%q<bootstrap_builder>, [">= 0.2.6"]) + s.add_dependency(%q<jquery-rails>, [">= 0"]) + s.add_dependency(%q<jeweler>, [">= 0"]) end end