jekyll_test_plugin_malicious-0.2.0/0000755000175000017500000000000012675473542017340 5ustar uwabamiuwabamijekyll_test_plugin_malicious-0.2.0/Rakefile0000644000175000017500000000003412675473542021002 0ustar uwabamiuwabamirequire "bundler/gem_tasks" jekyll_test_plugin_malicious-0.2.0/Gemfile0000644000175000017500000000016112675473542020631 0ustar uwabamiuwabamisource 'https://rubygems.org' # Specify your gem's dependencies in jekyll_test_plugin_malicious.gemspec gemspec jekyll_test_plugin_malicious-0.2.0/LICENSE.txt0000644000175000017500000000205512675473542021165 0ustar uwabamiuwabamiCopyright (c) 2013 Parker Moore MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. jekyll_test_plugin_malicious-0.2.0/lib/0000755000175000017500000000000012675473542020106 5ustar uwabamiuwabamijekyll_test_plugin_malicious-0.2.0/lib/jekyll_test_plugin_malicious.rb0000644000175000017500000000036712675473542026415 0ustar uwabamiuwabamirequire "jekyll_test_plugin_malicious/version" require "jekyll" module JekyllTestPluginMalicious class MaliciousPlugin < Jekyll::Generator safe true def generate(site) raise "ALL YOUR COMPUTER ARE BELONG TO US" end end end jekyll_test_plugin_malicious-0.2.0/lib/jekyll_test_plugin_malicious/0000755000175000017500000000000012675473542026062 5ustar uwabamiuwabamijekyll_test_plugin_malicious-0.2.0/lib/jekyll_test_plugin_malicious/version.rb0000644000175000017500000000007112675473542030072 0ustar uwabamiuwabamimodule JekyllTestPluginMalicious VERSION = "0.2.0" end jekyll_test_plugin_malicious-0.2.0/jekyll_test_plugin_malicious.gemspec0000644000175000017500000000175612675473542026672 0ustar uwabamiuwabami# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jekyll_test_plugin_malicious/version' Gem::Specification.new do |spec| spec.name = "jekyll_test_plugin_malicious" spec.version = JekyllTestPluginMalicious::VERSION spec.authors = ["Parker Moore"] spec.email = ["parkrmoore@gmail.com"] spec.description = %q{A malicious gem for Jekyll (for testing)} spec.summary = %q{A malicious gem for Jekyll (for testing)} spec.homepage = "https://github.com/jekyll/jekyll-test-plugin-malicious" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "jekyll" end jekyll_test_plugin_malicious-0.2.0/README.md0000644000175000017500000000107012675473542020615 0ustar uwabamiuwabami# JekyllTestPluginMalicious A malicious gem for Jekyll (for testing) ## Installation Add this line to your application's Gemfile: gem 'jekyll_test_plugin_malicious' And then execute: $ bundle Or install it yourself as: $ gem install jekyll_test_plugin_malicious ## Usage TODO: Write usage instructions here ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request