# -*- encoding: utf-8 -*- # stub: proclaim 0.2.2 ruby lib Gem::Specification.new do |s| s.name = "proclaim".freeze s.version = "0.2.2".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Kyle Fazzari".freeze] s.date = "2015-01-17" s.description = "\t\tMost Rails blogging tools include everything you could ever want,\n\t\tincluding things you don't. Proclaim tries to provide the simplest (yet\n\t\tbeautiful) implementation of a blog via a mountable engine; if more\n\t\tfunctionality is desired, it can easily be combined with other engines.\n".freeze s.email = ["proclaim@status.e4ward.com".freeze] s.files = ["CHANGELOG".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "app/assets/images/ajax_loader.gif".freeze, "app/assets/javascripts/proclaim.js".freeze, "app/assets/javascripts/proclaim/comments_handler.js.coffee".freeze, "app/assets/javascripts/proclaim/editor.js.coffee".freeze, "app/assets/javascripts/proclaim/images.js.coffee".freeze, "app/assets/javascripts/proclaim/subscriptions.js.coffee".freeze, "app/assets/stylesheets/proclaim.css.scss".freeze, "app/assets/stylesheets/proclaim/comments.css.scss".freeze, "app/assets/stylesheets/proclaim/images.scss".freeze, "app/assets/stylesheets/proclaim/posts.css.scss".freeze, "app/assets/stylesheets/proclaim/subscriptions.css.scss".freeze, "app/controllers/proclaim/application_controller.rb".freeze, "app/controllers/proclaim/comments_controller.rb".freeze, "app/controllers/proclaim/images_controller.rb".freeze, "app/controllers/proclaim/posts_controller.rb".freeze, "app/controllers/proclaim/subscriptions_controller.rb".freeze, "app/helpers/proclaim/application_helper.rb".freeze, "app/helpers/proclaim/comments_helper.rb".freeze, "app/helpers/proclaim/images_helper.rb".freeze, "app/helpers/proclaim/posts_helper.rb".freeze, "app/helpers/proclaim/subscriptions_helper.rb".freeze, "app/mailers/proclaim/subscription_mailer.rb".freeze, "app/models/proclaim/comment.rb".freeze, "app/models/proclaim/image.rb".freeze, "app/models/proclaim/post.rb".freeze, "app/models/proclaim/subscription.rb".freeze, "app/policies/application_policy.rb".freeze, "app/policies/proclaim/comment_policy.rb".freeze, "app/policies/proclaim/image_policy.rb".freeze, "app/policies/proclaim/post_policy.rb".freeze, "app/policies/proclaim/subscription_policy.rb".freeze, "app/uploaders/proclaim/image_uploader.rb".freeze, "app/views/layouts/proclaim/subscription_mailer.html.erb".freeze, "app/views/proclaim/comments/_comment.html.erb".freeze, "app/views/proclaim/comments/_form.html.erb".freeze, "app/views/proclaim/posts/_form.html.erb".freeze, "app/views/proclaim/posts/edit.html.erb".freeze, "app/views/proclaim/posts/index.html.erb".freeze, "app/views/proclaim/posts/new.html.erb".freeze, "app/views/proclaim/posts/show.html.erb".freeze, "app/views/proclaim/subscription_mailer/new_comment_notification_email.html.erb".freeze, "app/views/proclaim/subscription_mailer/new_post_notification_email.html.erb".freeze, "app/views/proclaim/subscription_mailer/welcome_email.html.erb".freeze, "app/views/proclaim/subscriptions/_form.html.erb".freeze, "app/views/proclaim/subscriptions/new.html.erb".freeze, "app/views/proclaim/subscriptions/subscribed.html.erb".freeze, "app/views/proclaim/subscriptions/unsubscribe.html.erb".freeze, "app/views/proclaim/subscriptions/unsubscribed.html.erb".freeze, "config/routes.rb".freeze, "db/migrate/20141108222616_create_proclaim_posts.rb".freeze, "db/migrate/20141114235359_create_proclaim_comments.rb".freeze, "db/migrate/20141115022230_create_proclaim_comment_hierarchies.rb".freeze, "db/migrate/20141210234057_create_proclaim_subscriptions.rb".freeze, "db/migrate/20141222224905_create_proclaim_images.rb".freeze, "lib/generators/proclaim/install_generator.rb".freeze, "lib/generators/proclaim/templates/README".freeze, "lib/generators/proclaim/templates/initialize_proclaim.rb".freeze, "lib/generators/proclaim/views_generator.rb".freeze, "lib/proclaim.rb".freeze, "lib/proclaim/engine.rb".freeze, "lib/proclaim/version.rb".freeze, "lib/tasks/proclaim_tasks.rake".freeze, "proclaim.gemspec".freeze, "test/controllers/proclaim/comments_controller_test.rb".freeze, "test/controllers/proclaim/images_controller_test.rb".freeze, "test/controllers/proclaim/posts_controller_test.rb".freeze, "test/controllers/proclaim/subscriptions_controller_test.rb".freeze, "test/dummy/README.rdoc".freeze, "test/dummy/Rakefile".freeze, "test/dummy/app/assets/javascripts/application.js".freeze, "test/dummy/app/assets/stylesheets/application.css".freeze, "test/dummy/app/controllers/application_controller.rb".freeze, "test/dummy/app/helpers/application_helper.rb".freeze, "test/dummy/app/models/user.rb".freeze, "test/dummy/app/views/layouts/application.html.erb".freeze, "test/dummy/bin/bundle".freeze, "test/dummy/bin/rails".freeze, "test/dummy/bin/rake".freeze, "test/dummy/config.ru".freeze, "test/dummy/config/application.rb".freeze, "test/dummy/config/boot.rb".freeze, "test/dummy/config/database.yml".freeze, "test/dummy/config/environment.rb".freeze, "test/dummy/config/environments/development.rb".freeze, "test/dummy/config/environments/production.rb".freeze, "test/dummy/config/environments/test.rb".freeze, "test/dummy/config/initializers/assets.rb".freeze, "test/dummy/config/initializers/backtrace_silencers.rb".freeze, "test/dummy/config/initializers/cookies_serializer.rb".freeze, "test/dummy/config/initializers/filter_parameter_logging.rb".freeze, "test/dummy/config/initializers/inflections.rb".freeze, "test/dummy/config/initializers/mime_types.rb".freeze, "test/dummy/config/initializers/session_store.rb".freeze, "test/dummy/config/initializers/wrap_parameters.rb".freeze, "test/dummy/config/locales/en.yml".freeze, "test/dummy/config/routes.rb".freeze, "test/dummy/config/secrets.yml".freeze, "test/dummy/db/migrate/20141117214323_create_users.rb".freeze, "test/dummy/db/schema.rb".freeze, "test/dummy/public/404.html".freeze, "test/dummy/public/422.html".freeze, "test/dummy/public/500.html".freeze, "test/dummy/public/favicon.ico".freeze, "test/factories/proclaim/comment.rb".freeze, "test/factories/proclaim/image.rb".freeze, "test/factories/proclaim/post.rb".freeze, "test/factories/proclaim/subscription.rb".freeze, "test/factories/user.rb".freeze, "test/helpers/proclaim/comments_helper_test.rb".freeze, "test/helpers/proclaim/posts_helper_test.rb".freeze, "test/helpers/proclaim/subscriptions_helper_test.rb".freeze, "test/integration/with_javascript/comment_test.rb".freeze, "test/integration/with_javascript/post_form_test.rb".freeze, "test/integration/with_javascript/post_show_test.rb".freeze, "test/integration/with_javascript/post_subscription_test.rb".freeze, "test/integration/without_javascript/blog_subscription_test.rb".freeze, "test/integration/without_javascript/post_test.rb".freeze, "test/integration/without_javascript/subscription_email_test.rb".freeze, "test/integration/without_javascript/unsubscribe_test.rb".freeze, "test/mailers/previews/proclaim/subscription_mailer_preview.rb".freeze, "test/mailers/proclaim/subscription_mailer_test.rb".freeze, "test/models/proclaim/comment_test.rb".freeze, "test/models/proclaim/image_test.rb".freeze, "test/models/proclaim/post_test.rb".freeze, "test/models/proclaim/subscription_test.rb".freeze, "test/policies/proclaim/comment_policy_test.rb".freeze, "test/policies/proclaim/post_policy_test.rb".freeze, "test/policies/proclaim/subscription_policy_test.rb".freeze, "test/proclaim_test.rb".freeze, "test/support/images/test.jpg".freeze, "test/support/pages/posts/edit_page.rb".freeze, "test/support/pages/posts/show_page.rb".freeze, "test/support/wait_for_ajax.rb".freeze, "test/test_helper.rb".freeze, "vendor/assets/images/link.png".freeze, "vendor/assets/images/remove.png".freeze, "vendor/assets/images/resize-bigger.png".freeze, "vendor/assets/images/resize-smaller.png".freeze, "vendor/assets/images/unlink.png".freeze, "vendor/assets/javascripts/addons/medium-editor-insert-embeds.js".freeze, "vendor/assets/javascripts/addons/medium-editor-insert-images.js".freeze, "vendor/assets/javascripts/addons/medium-editor-insert-maps.js".freeze, "vendor/assets/javascripts/addons/medium-editor-insert-plugin.js".freeze, "vendor/assets/javascripts/addons/medium-editor-insert-tables.js".freeze, "vendor/assets/javascripts/medium-editor-insert-plugin.all.js".freeze, "vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.css.scss".freeze, "vendor/assets/stylesheets/medium-editor-insert-plugin.css.scss".freeze] s.homepage = "https://github.com/kyle-f/proclaim".freeze s.licenses = ["GPLv3".freeze] s.required_ruby_version = Gem::Requirement.new(">= 1.9.3".freeze) s.rubygems_version = "3.5.10".freeze s.summary = "A Rails blogging engine that simplifies your life.".freeze s.test_files = ["test/dummy/public/500.html".freeze, "test/dummy/public/favicon.ico".freeze, "test/dummy/public/422.html".freeze, "test/dummy/public/404.html".freeze, "test/dummy/README.rdoc".freeze, "test/dummy/bin/rake".freeze, "test/dummy/bin/rails".freeze, "test/dummy/bin/bundle".freeze, "test/dummy/db/schema.rb".freeze, "test/dummy/db/migrate/20141117214323_create_users.rb".freeze, "test/dummy/config.ru".freeze, "test/dummy/Rakefile".freeze, "test/dummy/config/locales/en.yml".freeze, "test/dummy/config/secrets.yml".freeze, "test/dummy/config/initializers/wrap_parameters.rb".freeze, "test/dummy/config/initializers/cookies_serializer.rb".freeze, "test/dummy/config/initializers/assets.rb".freeze, "test/dummy/config/initializers/backtrace_silencers.rb".freeze, "test/dummy/config/initializers/session_store.rb".freeze, "test/dummy/config/initializers/filter_parameter_logging.rb".freeze, "test/dummy/config/initializers/inflections.rb".freeze, "test/dummy/config/initializers/mime_types.rb".freeze, "test/dummy/config/routes.rb".freeze, "test/dummy/config/application.rb".freeze, "test/dummy/config/environments/production.rb".freeze, "test/dummy/config/environments/development.rb".freeze, "test/dummy/config/environments/test.rb".freeze, "test/dummy/config/database.yml".freeze, "test/dummy/config/boot.rb".freeze, "test/dummy/config/environment.rb".freeze, "test/dummy/app/helpers/application_helper.rb".freeze, "test/dummy/app/models/user.rb".freeze, "test/dummy/app/controllers/application_controller.rb".freeze, "test/dummy/app/views/layouts/application.html.erb".freeze, "test/dummy/app/assets/javascripts/application.js".freeze, "test/dummy/app/assets/stylesheets/application.css".freeze, "test/integration/with_javascript/comment_test.rb".freeze, "test/integration/with_javascript/post_subscription_test.rb".freeze, "test/integration/with_javascript/post_form_test.rb".freeze, "test/integration/with_javascript/post_show_test.rb".freeze, "test/integration/without_javascript/post_test.rb".freeze, "test/integration/without_javascript/subscription_email_test.rb".freeze, "test/integration/without_javascript/unsubscribe_test.rb".freeze, "test/integration/without_javascript/blog_subscription_test.rb".freeze, "test/proclaim_test.rb".freeze, "test/support/pages/posts/edit_page.rb".freeze, "test/support/pages/posts/show_page.rb".freeze, "test/support/images/test.jpg".freeze, "test/support/wait_for_ajax.rb".freeze, "test/test_helper.rb".freeze, "test/helpers/proclaim/subscriptions_helper_test.rb".freeze, "test/helpers/proclaim/comments_helper_test.rb".freeze, "test/helpers/proclaim/posts_helper_test.rb".freeze, "test/factories/user.rb".freeze, "test/factories/proclaim/image.rb".freeze, "test/factories/proclaim/comment.rb".freeze, "test/factories/proclaim/subscription.rb".freeze, "test/factories/proclaim/post.rb".freeze, "test/models/proclaim/subscription_test.rb".freeze, "test/models/proclaim/post_test.rb".freeze, "test/models/proclaim/comment_test.rb".freeze, "test/models/proclaim/image_test.rb".freeze, "test/mailers/previews/proclaim/subscription_mailer_preview.rb".freeze, "test/mailers/proclaim/subscription_mailer_test.rb".freeze, "test/controllers/proclaim/comments_controller_test.rb".freeze, "test/controllers/proclaim/images_controller_test.rb".freeze, "test/controllers/proclaim/subscriptions_controller_test.rb".freeze, "test/controllers/proclaim/posts_controller_test.rb".freeze, "test/policies/proclaim/post_policy_test.rb".freeze, "test/policies/proclaim/subscription_policy_test.rb".freeze, "test/policies/proclaim/comment_policy_test.rb".freeze] s.specification_version = 4 s.add_runtime_dependency(%q.freeze, ["~> 4.2".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 4.1".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 5.0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 4.0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 1.6".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 1.8".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 5.2".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 4.2".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 1.0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 0.10".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 4.0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 2.11".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 0.3".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.3".freeze]) s.add_development_dependency(%q.freeze, ["~> 4.5".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.1".freeze]) s.add_development_dependency(%q.freeze, ["~> 2.6".freeze]) s.add_development_dependency(%q.freeze, ["~> 2.4".freeze]) s.add_development_dependency(%q.freeze, ["~> 2.44".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.3".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.4".freeze]) s.add_development_dependency(%q.freeze, ["~> 0.4".freeze]) end