tnargav 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/CHANGELOG.md +49 -0
- data/CONTRIBUTING.md +41 -0
- data/Gemfile +1 -1
- data/config/default.rb +1 -1
- data/contrib/bash/completion.sh +29 -1
- data/lib/vagrant/action/builder.rb +1 -1
- data/lib/vagrant/action/builtin/graceful_halt.rb +6 -1
- data/lib/vagrant/box_collection.rb +1 -1
- data/lib/vagrant/errors.rb +12 -0
- data/lib/vagrant/guest.rb +10 -1
- data/lib/vagrant/machine.rb +2 -0
- data/lib/vagrant/machine_state.rb +1 -1
- data/lib/vagrant/util/subprocess.rb +7 -0
- data/lib/vagrant/version.rb +1 -1
- data/plugins/commands/status/command.rb +1 -1
- data/plugins/communicators/ssh/communicator.rb +3 -0
- data/plugins/guests/arch/cap/configure_networks.rb +3 -2
- data/plugins/guests/debian/guest.rb +1 -1
- data/plugins/guests/gentoo/cap/change_host_name.rb +1 -1
- data/plugins/guests/gentoo/cap/configure_networks.rb +2 -2
- data/plugins/guests/linux/cap/read_ip_address.rb +2 -2
- data/plugins/guests/omnios/cap/change_host_name.rb +17 -0
- data/plugins/guests/omnios/guest.rb +11 -0
- data/plugins/guests/omnios/plugin.rb +20 -0
- data/plugins/guests/redhat/cap/configure_networks.rb +1 -1
- data/plugins/guests/solaris/guest.rb +1 -1
- data/plugins/guests/suse/cap/change_host_name.rb +1 -1
- data/plugins/guests/ubuntu/guest.rb +1 -1
- data/plugins/hosts/fedora/host.rb +1 -1
- data/plugins/kernel_v1/config/vm.rb +3 -0
- data/plugins/kernel_v2/config/vm.rb +13 -0
- data/plugins/providers/virtualbox/action/forward_ports.rb +1 -0
- data/plugins/providers/virtualbox/action/network.rb +4 -2
- data/plugins/providers/virtualbox/driver/base.rb +10 -1
- data/plugins/providers/virtualbox/driver/version_4_2.rb +2 -2
- data/plugins/providers/virtualbox/model/forwarded_port.rb +6 -0
- data/plugins/provisioners/puppet/config/puppet.rb +27 -7
- data/plugins/provisioners/puppet/provisioner/puppet.rb +28 -5
- data/templates/commands/init/Vagrantfile.erb +4 -0
- data/templates/guests/arch/network_dhcp.erb +4 -4
- data/templates/guests/arch/network_static.erb +5 -6
- data/templates/locales/en.yml +16 -4
- data/templates/provisioners/chef_solo/solo.erb +2 -0
- data/test/unit/vagrant/guest_test.rb +13 -0
- data/tnargav.gemspec +0 -1
- data/vagrant.gemspec +0 -1
- data/vendor/bundle/ruby/1.9.1/bin/autospec +23 -0
- data/vendor/bundle/ruby/1.9.1/bin/erubis +23 -0
- data/vendor/bundle/ruby/1.9.1/bin/htmldiff +25 -0
- data/vendor/bundle/ruby/1.9.1/bin/ldiff +25 -0
- data/vendor/bundle/ruby/1.9.1/bin/rake +23 -0
- data/vendor/bundle/ruby/1.9.1/bin/rspec +23 -0
- data/vendor/bundle/ruby/1.9.1/bin/vagrant +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/.document +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/.gitignore +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/.rspec +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/.travis.yml +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/Gemfile +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/LICENSE +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/README.md +150 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/Rakefile +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/childprocess.gemspec +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/abstract_io.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/abstract_process.rb +173 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/errors.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/jruby/io.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/jruby/process.rb +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/jruby/pump.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/jruby.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/tools/generator.rb +146 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/fork_exec_process.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/io.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/lib.rb +181 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/platform/i386-linux.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/platform/i386-solaris.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/platform/x86_64-linux.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/platform/x86_64-macosx.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/posix_spawn_process.rb +140 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix/process.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/unix.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/version.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/handle.rb +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/io.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/lib.rb +363 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/process.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/process_builder.rb +179 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows/structs.rb +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/windows.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess.rb +177 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/abstract_io_spec.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/childprocess_spec.rb +206 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/io_spec.rb +217 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/jruby_spec.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/pid_behavior.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/spec_helper.rb +216 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/unix_spec.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/spec/windows_spec.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/LICENSE +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/README.markdown +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/Rakefile +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/lib/contest.rb +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/rails/init.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/test/all_test.rb +131 -0
- data/vendor/bundle/ruby/1.9.1/gems/contest-0.1.3/test/setup_and_teardown_order_test.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/.gemtest +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/History.rdoc +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/License.rdoc +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/README.rdoc +72 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/Rakefile +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
- data/vendor/bundle/ruby/1.9.1/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/CHANGES.txt +828 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/README.txt +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/Makefile +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/bench.rb +313 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/bench_context.yaml +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/_footer.html +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/_header.html +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_erb.rhtml +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_erubis.rhtml +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_eruby.rhtml +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/bin/erubis +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/contrib/erubis +3468 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/contrib/erubis-run.rb +132 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/contrib/inline-require +179 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc/docstyle.css +209 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc/users-guide.html +3551 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +209 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ActionView.html +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ERB.html +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Converter.html +327 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Engine.html +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic.html +112 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CGenerator.html +386 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CommandOptionError.html +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Context.html +344 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Converter.html +283 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CppGenerator.html +382 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ec.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ecpp.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejava.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejavascript.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Engine.html +305 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Eperl.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ephp.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErubisError.html +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Eruby.html +132 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEc.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEcpp.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjava.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEperl.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEphp.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEruby.html +127 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Escheme.html +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Evaluator.html +212 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/FastEruby.html +131 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Generator.html +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +213 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers.html +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEnhancer.html +305 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/JavaGenerator.html +359 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Main.html +341 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NotSupportedError.html +119 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Converter.html +266 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ec.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ecpp.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejava.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Engine.html +122 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eperl.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ephp.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eruby.html +155 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Escheme.html +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI.html +125 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEnhancer.html +163 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PerlGenerator.html +344 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PhpGenerator.html +350 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEnhancer.html +210 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyGenerator.html +328 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringIOEruby.html +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/TinyEruby.html +298 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlEruby.html +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlHelper.html +255 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis.html +362 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Kernel.html +155 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/created.rid +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/README_txt.html +247 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/context_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/converter_rb.html +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ec_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ecpp_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejava_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/eperl_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ephp_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/eruby_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/escheme_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/optimized_rb.html +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine_rb.html +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/enhancer_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/error_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/evaluator_rb.html +115 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/generator_rb.html +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helper_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/local-setting_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/main_rb.html +129 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/preprocessing_rb.html +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/tiny_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/util_rb.html +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis_rb.html +118 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_class_index.html +129 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_file_index.html +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_method_index.html +265 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/index.html +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/doc-api/rdoc-style.css +208 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/Makefile +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ec +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ecpp +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ejava +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ejs +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.eperl +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ephp +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.eruby +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.escheme +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/Makefile +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ec +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ejava +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ejs +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.eperl +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ephp +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.eruby +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.escheme +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/context.rb +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/converter.rb +357 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +110 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +119 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +99 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +125 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +127 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine.rb +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/enhancer.rb +723 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/error.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/evaluator.rb +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/generator.rb +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helper.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +197 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +353 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/local-setting.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/main.rb +516 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/tiny.rb +144 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/util.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis.rb +73 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/setup.rb +1331 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/assert-text-equal.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/Example.ejava +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/array_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/arraybuffer_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bipattern-example.rhtml +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bipattern_example.result +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.result +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/context.rb +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/context.yaml +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/def_method.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/def_method.result +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/escape_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ec +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ecpp +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ejs +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.eperl +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ephp +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.eruby +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.escheme +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.eruby +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.result +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.result +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.xhtml +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10_x.result +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.php +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.result +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.rhtml +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_C.result +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_N.result +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_U.result +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_php.result +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1_x.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.eruby +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.result +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2_trim.result +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2_x.result +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3.eruby +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example31.result +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example32.result +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3_e.result +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.eruby +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.result +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4_x.result +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.eruby +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.result +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example6.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example6.result +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example7.eruby +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example71.result +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example72.result +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8.eruby +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8_ruby.result +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8_yaml.result +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.eruby +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example91.result +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example92.result +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_c.result +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_java.result +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_js.result +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_perl.result +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_php.result +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_scheme.result +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_scheme_display.result +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.result +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.result +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rhtml +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example.eruby +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rhtml +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example.result +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example2.result +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/interpolation_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program1.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program1.result +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program2.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program2.result +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode-example.eruby +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode-php.result +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode_example.result +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/normal-eruby-test.eruby +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/normal_eruby_test.result +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-example.eruby +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-example.php +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-php.result +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext_example.result +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/percentline-example.rhtml +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/percentline_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rhtml +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenable_example.result +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.eruby +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printstatement_example.result +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/simplify_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stderr.log +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stdout_exmple.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stringbuffer_example.result +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/tail_260.result +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/tailnewline.rhtml +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/template1.rhtml +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/template2.rhtml +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-engines.rb +425 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-enhancers.rb +646 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-erubis.rb +887 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-index-cgi.rb +191 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-main.rb +752 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test-users-guide.rb +73 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/test.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/erubis-2.7.0/test/testutil.rb +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/COPYING +674 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/COPYING.LESSER +165 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/History.txt +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/LICENSE +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/README.md +109 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/Rakefile +220 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/AbstractMemory.c +1021 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/AbstractMemory.h +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ArrayType.c +153 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ArrayType.h +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Buffer.c +355 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Call.c +456 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Call.h +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ClosurePool.c +274 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ClosurePool.h +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/DataConverter.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/DataConverter.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/DynamicLibrary.c +324 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/DynamicLibrary.h +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Function.c +990 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Function.h +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/FunctionInfo.c +261 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LastError.c +174 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LastError.h +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LongDouble.c +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LongDouble.h +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Makefile +220 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MappedType.c +159 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MappedType.h +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MemoryPointer.c +188 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MemoryPointer.h +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MethodHandle.c +351 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MethodHandle.h +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Platform.c +112 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Platform.h +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Pointer.c +499 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Pointer.h +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Struct.c +819 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Struct.h +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByReference.c +190 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByReference.h +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByReference.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByValue.c +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByValue.h +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructLayout.c +689 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Thread.c +343 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Thread.h +86 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Type.c +386 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Type.h +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Types.c +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Types.h +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Variadic.c +266 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/compat.h +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/extconf.h +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/extconf.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ffi.c +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/ffi_c.bundle +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/ChangeLog +4600 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/Makefile.am +196 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/Makefile.in +1820 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/README +342 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/aclocal.m4 +1873 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/compile +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/config.guess +1501 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/config.sub +1705 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/configure +17191 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/configure.ac +496 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/configure.host +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/depcomp +630 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/doc/libffi.info +593 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/doc/libffi.texi +600 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/fficonfig.h.in +199 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/Makefile.in +487 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/ffi.h.in +427 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/include/ffi_common.h +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/install-sh +520 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/ltmain.sh +9636 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/man/Makefile.in +466 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/mdate-sh +201 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/missing +376 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/closures.c +615 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/debug.c +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/prep_cif.c +177 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/types.c +77 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/src/x86/win64.S +468 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.bsd.mk +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.darwin.mk +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.gnu.mk +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.mk +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.vc.mk +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/libffi.vc64.mk +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/mkmf.log +328 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/rbffi.h +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/rbffi_endian.h +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/win32/stdbool.h +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ext/ffi_c/win32/stdint.h +201 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/ffi.gemspec +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/gen/Rakefile +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/gen/log +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/autopointer.rb +184 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/buffer.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/callback.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/enum.rb +162 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/errno.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/ffi.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/io.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/library.rb +489 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/managedstruct.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/memorypointer.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/platform.rb +139 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/pointer.rb +122 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/struct.rb +356 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/struct_layout_builder.rb +211 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/tools/const_generator.rb +229 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/tools/generator.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/tools/generator_task.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/tools/struct_generator.rb +194 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/tools/types_generator.rb +135 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/types.rb +177 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/union.rb +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/variadic.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi/version.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/lib/ffi_c.bundle +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/Benchmark.c +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/BoolTest.c +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/BufferTest.c +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/ClosureTest.c +190 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/EnumTest.c +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/FunctionTest.c +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/GNUmakefile +149 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/GlobalVariable.c +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/LastErrorTest.c +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/NumberTest.c +132 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/PointerTest.c +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/ReferenceTest.c +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/StringTest.c +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/StructTest.c +240 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/UnionTest.c +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/libtest/VariadicTest.c +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/async_callback_spec.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/bool_spec.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/buffer_spec.rb +251 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/callback_spec.rb +667 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/custom_param_type.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/custom_type_spec.rb +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/dup_spec.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/enum_spec.rb +220 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/errno_spec.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/ffi_spec.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/function_spec.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/library_spec.rb +216 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/long_double.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/managed_struct_spec.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/number_spec.rb +236 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/pointer_spec.rb +265 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/rbx/attach_function_spec.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/rbx/memory_pointer_spec.rb +123 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/rbx/spec_helper.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/rbx/struct_spec.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/spec_helper.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/string_spec.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/strptr_spec.rb +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_by_ref_spec.rb +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_callback_spec.rb +69 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_initialize_spec.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_packed_spec.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_spec.rb +748 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/typedef_spec.rb +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/union_spec.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/variadic_spec.rb +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/spec.opts +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/CHANGELOG.textile +152 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/README.textile +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.no-rails +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.no-rails.lock +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.rails-2.3.x +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.rails-2.3.x.lock +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.rails-3.x +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/ci/Gemfile.rails-3.x.lock +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/base.rb +185 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/cache.rb +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/cascade.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/chain.rb +77 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/fallbacks.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/flatten.rb +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/gettext.rb +72 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/interpolation_compiler.rb +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/key_value.rb +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/memoize.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/metadata.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/pluralization.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/simple.rb +87 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend/transliterator.rb +99 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/backend.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/config.rb +86 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/core_ext/hash.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/core_ext/string/interpolate.rb +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/exceptions.rb +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/gettext/helpers.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/gettext/po_parser.rb +329 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/gettext.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/interpolate/ruby.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale/fallbacks.rb +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale/tag/parents.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale/tag/simple.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale/tag.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/locale.rb +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/basics.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/defaults.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/interpolation.rb +133 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/link.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/localization/date.rb +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/localization/date_time.rb +77 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/localization/procs.rb +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/localization/time.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/localization.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/lookup.rb +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/pluralization.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests/procs.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/tests.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n/version.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/lib/i18n.rb +333 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/all.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/all_features_test.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/cascade_test.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/chain_test.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/fallbacks_test.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/key_value_test.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/memoize_test.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/override_test.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/pluralization_test.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/api/simple_test.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/cache_test.rb +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/cascade_test.rb +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/chain_test.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/exceptions_test.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/fallbacks_test.rb +125 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/interpolation_compiler_test.rb +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/key_value_test.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/memoize_test.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/metadata_test.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/pluralization_test.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/simple_test.rb +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/backend/transliterator_test.rb +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/core_ext/hash_test.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/core_ext/string/interpolate_test.rb +99 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/gettext/api_test.rb +206 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/gettext/backend_test.rb +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/i18n/exceptions_test.rb +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/i18n/interpolate_test.rb +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/i18n/load_path_test.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/i18n_test.rb +254 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/locale/fallbacks_test.rb +136 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/locale/tag/rfc4646_test.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/locale/tag/simple_test.rb +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/run_all.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/de.po +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/en.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/en.yml +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/invalid/empty.yml +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/invalid/syntax.yml +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_data/locales/plurals.rb +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.4/test/test_helper.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/content/contact.html +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/content/contribute.html +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/content/index.html +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/content/license.html +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/content/manual.html +449 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/dev/README.developers +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/dev/checklist +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/dev/things-to-do +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/images/log4r-logo.png +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/images/logo2.png +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/log4r.css +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/rdoc-log4r.css +696 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/doc/templates/main.html +147 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/README +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/ancestors.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/chainsaw_settings.xml +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/customlevels.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/filelog.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/fileroll.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/gmail.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/gmail.yaml +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/log4r_yaml.yaml +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/logclient.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/logserver.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/moderate.xml +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/moderateconfig.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/myformatter.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/outofthebox.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/rdoc-gen +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/rrconfig.xml +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/rrsetup.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/simpleconfig.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/syslogcustom.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/xmlconfig.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/examples/yaml.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/GDC.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/MDC.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/NDC.rb +86 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/base.rb +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/config.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/configurator.rb +224 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/formatter/formatter.rb +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/formatter/log4jxmlformatter.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/formatter/patternformatter.rb +145 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/lib/drbloader.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/lib/xmlloader.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/logevent.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/logger.rb +199 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/loggerfactory.rb +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/logserver.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/consoleoutputters.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/datefileoutputter.rb +117 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/emailoutputter.rb +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/fileoutputter.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/iooutputter.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/outputter.rb +134 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/outputterfactory.rb +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/remoteoutputter.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/rollingfileoutputter.rb +234 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/scribeoutputter.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/staticoutputter.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/syslogoutputter.rb +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/GDC +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/MDC +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/NDC +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/configurator +243 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/emailoutputter +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/formatter +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/log4jxmlformatter +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/log4r +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/logger +175 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/logserver +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/outputter +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/patternformatter +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/scribeoutputter +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/syslogoutputter +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/win32eventoutputter +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/rdoc/yamlconfigurator +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/repository.rb +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/staticlogger.rb +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/version.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/yamlconfigurator.rb +198 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/README +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testGDC.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testMDC.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/test_helper.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testall.rb +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testbase.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testchainsaw.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testconf.xml +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testcustom.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testformatter.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testlogger.rb +200 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testoutputter.rb +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testpatternformatter.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testthreads.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testxmlconf.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testyaml.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testyaml_arrays.yaml +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testyaml_injection.yaml +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/.gitignore +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/Gemfile +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/README.md +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/Rakefile +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/lib/metaclass/object_methods.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/lib/metaclass/version.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/lib/metaclass.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/metaclass.gemspec +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/test/object_methods_test.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/metaclass-0.0.1/test/test_helper.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/.autotest +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/.gemtest +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/History.txt +381 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/Manifest.txt +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/README.txt +270 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/Rakefile +94 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/design_rationale.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/hoe/minitest.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/autorun.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/benchmark.rb +366 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/mock.rb +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/pride.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/spec.rb +513 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/lib/minitest/unit.rb +1163 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/test/test_minitest_benchmark.rb +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/test/test_minitest_mock.rb +148 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/test/test_minitest_spec.rb +391 -0
- data/vendor/bundle/ruby/1.9.1/gems/minitest-2.5.1/test/test_minitest_unit.rb +1448 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/.gemtest +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/.yardopts +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/COPYING.md +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/Gemfile +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/MIT-LICENSE.md +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/README.md +231 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/RELEASE.md +485 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/Rakefile +139 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/build-matrix.rb +71 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.1.3.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.1.4.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.1.4.1 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.1.4.2 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.2.0.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.2.0.1 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.2.11.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.2.11.2 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.2.3.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.minitest.latest +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.test-unit.2.0.0 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.test-unit.2.0.1 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.test-unit.2.0.3 +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/gemfiles/Gemfile.test-unit.latest +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/init.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/any_instance_method.rb +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/api.rb +176 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/argument_iterator.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/backtrace_filter.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/cardinality.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/central.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/change_state_side_effect.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/class_method.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/class_methods.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/configuration.rb +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/debug.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/deprecation.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/exception_raiser.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/expectation.rb +612 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/expectation_error.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/expectation_error_factory.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/expectation_list.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/hooks.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/inspect.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/instance_method.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/assertion_counter.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/adapter.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/exception_translation.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/nothing.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_13.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_140.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_141.rb +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_142_to_172.rb +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_200.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_201_to_222.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_2110_to_2111.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_2112_to_320.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test/version_230_to_2101.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/mini_test.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/monkey_patcher.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/adapter.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/gem_version_200.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/nothing.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration/test_unit.rb +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/integration.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/is_a.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/logger.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/method_matcher.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/mock.rb +283 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/mockery.rb +204 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/module_method.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/module_methods.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/multiple_yields.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/names.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/no_yields.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/object_methods.rb +173 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/all_of.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/any_of.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/any_parameters.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/anything.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/base.rb +71 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/equals.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/has_entries.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/has_entry.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/has_key.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/has_value.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/includes.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/instance_of.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/is_a.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/kind_of.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/not.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/object.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/optionally.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/query_string.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/regexp_matches.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/responds_with.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/yaml_equivalent.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameters_matcher.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/pretty_parameters.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/return_values.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/sequence.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/setup.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/single_return_value.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/single_yield.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/standalone.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/state_machine.rb +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/stubbing_error.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/thrower.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/unexpected_invocation.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/version.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/yield_parameters.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha_standalone.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/mocha.gemspec +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/acceptance_test_helper.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/bug_18914_test.rb +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/bug_21465_test.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/bug_21563_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/exception_rescue_test.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/expectations_on_multiple_methods_test.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/expected_invocation_count_test.rb +232 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/failure_messages_test.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/issue_65_test.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/issue_70_test.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/mocha_example_test.rb +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/mocha_test_result_test.rb +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/mock_test.rb +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/mock_with_initializer_block_test.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/multiple_expectations_failure_message_test.rb +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/optional_parameters_test.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/parameter_matcher_test.rb +337 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/partial_mocks_test.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/raise_exception_test.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/return_value_test.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/sequence_test.rb +192 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/states_test.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_any_instance_method_test.rb +202 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_class_method_defined_on_class_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_class_method_defined_on_module_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_class_method_defined_on_superclass_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_everything_test.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +69 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_class_test.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_module_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +72 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_module_method_test.rb +163 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stub_test.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubba_example_test.rb +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubba_test_result_test.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_frozen_object_test.rb +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_nil_test.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/throw_test.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/acceptance/unstubbing_test.rb +168 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/deprecation_disabler.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/execution_point.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/integration/mini_test_test.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/integration/shared_tests.rb +174 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/integration/test_unit_test.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/method_definer.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/mini_test_result.rb +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/minitest_result.rb +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/simple_counter.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/test_helper.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/test_runner.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/test_unit_result.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/any_instance_method_test.rb +132 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/array_inspect_test.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/backtrace_filter_test.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/cardinality_test.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/central_test.rb +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/change_state_side_effect_test.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/class_method_test.rb +223 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/class_methods_test.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/configuration_test.rb +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/date_time_inspect_test.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/exception_raiser_test.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/expectation_list_test.rb +71 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/expectation_test.rb +497 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/hash_inspect_test.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/hooks_test.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/in_state_ordering_constraint_test.rb +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/method_matcher_test.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/mock_test.rb +341 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/mockery_test.rb +151 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/module_methods_test.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/multiple_yields_test.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/no_yields_test.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/object_inspect_test.rb +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/object_methods_test.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/all_of_test.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/any_of_test.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/anything_test.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/equals_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/has_entries_test.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/has_entry_test.rb +129 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/has_key_test.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/has_value_test.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/includes_test.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/instance_of_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/is_a_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/kind_of_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/not_test.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/regexp_matches_test.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/responds_with_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/stub_matcher.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/parameters_matcher_test.rb +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/return_values_test.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/sequence_test.rb +104 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/single_return_value_test.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/single_yield_test.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/state_machine_test.rb +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/string_inspect_test.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/thrower_test.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/yield_parameters_test.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/yard-templates/default/layout/html/google_analytics.erb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/yard-templates/default/layout/html/setup.rb +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/CHANGES.txt +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/LICENSE.txt +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/Manifest +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/README.rdoc +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/Rakefile +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/gem-public_cert.pem +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/net/scp/download.rb +150 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/net/scp/errors.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/net/scp/upload.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/net/scp/version.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/net/scp.rb +442 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/uri/open-scp.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/lib/uri/scp.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/net-scp.gemspec +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/setup.rb +1331 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/test/common.rb +153 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/test/test_all.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/test/test_download.rb +170 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/test/test_scp.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-scp-1.1.2/test/test_upload.rb +269 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/CHANGES.txt +350 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/LICENSE.txt +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/Manifest +133 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/README.rdoc +219 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/Rakefile +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/Rudyfile +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/THANKS.txt +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/gem-public_cert.pem +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/agent/java_pageant.rb +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/agent/socket.rb +170 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/agent.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/constants.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/key_manager.rb +253 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/abstract.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/hostbased.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/keyboard_interactive.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/none.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/password.rb +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/methods/publickey.rb +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/pageant.rb +260 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/authentication/session.rb +154 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/buffer.rb +350 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/buffered_io.rb +198 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/config.rb +208 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/connection/channel.rb +630 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/connection/constants.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/connection/session.rb +601 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/connection/term.rb +178 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/errors.rb +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/key_factory.rb +120 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/known_hosts.rb +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/loggable.rb +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/packet.rb +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/prompt.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/proxy/command.rb +75 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/proxy/errors.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/proxy/http.rb +94 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/proxy/socks4.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/proxy/socks5.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/ruby_compat.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/service/forward.rb +298 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/channel.rb +138 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/extensions.rb +152 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/kex.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/local_packet.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/packet.rb +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/remote_packet.rb +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/script.rb +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test/socket.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/test.rb +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/algorithms.rb +407 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/cipher_factory.rb +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/constants.rb +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/ctr.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/abstract.rb +79 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/md5.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/none.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/ripemd160.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha1.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha2_256.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha2_256_96.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha2_512.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac/sha2_512_96.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/hmac.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/identity_cipher.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +216 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/kex.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/key_expander.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/openssl.rb +237 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/packet_stream.rb +238 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/server_version.rb +71 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/session.rb +282 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/transport/state.rb +206 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/verifiers/lenient.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/verifiers/null.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/verifiers/secure.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/verifiers/strict.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh/version.rb +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/lib/net/ssh.rb +230 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/net-ssh.gemspec +190 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/setup.rb +1585 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/support/arcfour_check.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/support/ssh_tunnel_bug.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/README.txt +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/common.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_abstract.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_hostbased.rb +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_keyboard_interactive.rb +100 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_none.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_password.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/methods/test_publickey.rb +148 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/test_agent.rb +205 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/test_key_manager.rb +218 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/authentication/test_session.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/common.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/eqsign +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/exact_match +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/host_plus +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/multihost +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/nohost +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/numeric_host +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/substitutes +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/configs/wild_cards +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/connection/test_channel.rb +467 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/connection/test_session.rb +488 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/known_hosts/github +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/manual/test_forward.rb +223 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/start/test_transport.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_all.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_buffer.rb +433 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_buffered_io.rb +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_config.rb +143 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_key_factory.rb +173 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/test_known_hosts.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_md5.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_md5_96.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_none.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_ripemd160.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha1.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha1_96.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha2_256.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha2_256_96.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha2_512.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/hmac/test_sha2_512_96.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_diffie_hellman_group14_sha1.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_diffie_hellman_group_exchange_sha256.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_ecdh_sha2_nistp256.rb +161 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_ecdh_sha2_nistp384.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/kex/test_ecdh_sha2_nistp521.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_algorithms.rb +330 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_cipher_factory.rb +443 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_hmac.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_identity_cipher.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_packet_stream.rb +1755 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_server_version.rb +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_session.rb +319 -0
- data/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.8/test/transport/test_state.rb +181 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/.gemtest +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/CHANGES +530 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/README.rdoc +187 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/Rakefile +375 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/TODO +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/bin/rake +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/command_line_usage.rdoc +152 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/glossary.rdoc +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/jamis.rb +591 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/rake.1.gz +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/rakefile.rdoc +617 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.6.rdoc +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.4.rdoc +110 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.5.rdoc +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-0.9.6.rdoc +127 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-10.0.1.rdoc +187 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-10.0.2.rdoc +191 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/install.rb +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/alt_system.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/application.rb +728 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/backtrace.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/clean.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/cloneable.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/compositepublisher.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/ftptools.rb +139 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/publisher.rb +73 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/rubyforgepublisher.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sshpublisher.rb +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/contrib/sys.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/default_loader.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/dsl_definition.rb +157 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/early_time.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/core.rb +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/module.rb +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/string.rb +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ext/time.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_creation_task.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_list.rb +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_task.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils.rb +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/file_utils_ext.rb +144 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/gempackagetask.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/invocation_exception_mixin.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/linked_list.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/loaders/makefile.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/multi_task.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/name_space.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/packagetask.rb +190 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pathmap.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/phony.rb +15 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/private_reader.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/promise.rb +99 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/pseudo_status.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_module.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rake_test_loader.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rdoctask.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/ruby182_test_unit_fix.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/runtest.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/scope.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task.rb +378 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_argument_error.rb +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_arguments.rb +89 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/task_manager.rb +297 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/tasklib.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/testtask.rb +201 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_history_display.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/thread_pool.rb +161 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/trace_output.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/version.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake/win32.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/lib/rake.rb +73 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/file_creation.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/helper.rb +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/support/rakefile_definitions.rb +444 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/support/ruby_runner.rb +33 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_private_reader.rb +42 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application.rb +517 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_application_options.rb +457 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_backtrace.rb +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_clean.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_definitions.rb +79 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_directory_task.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_dsl.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_early_time.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_extension.rb +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_creation_task.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list.rb +627 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_list_path_map.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_task.rb +122 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_file_utils.rb +309 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_ftp_file.rb +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_functional.rb +466 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_invocation_chain.rb +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_linked_list.rb +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_makefile_loader.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_multi_task.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_name_space.rb +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_package_task.rb +79 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map.rb +168 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_explode.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_path_map_partial.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_pseudo_status.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rake_test_loader.rb +20 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_reduce_compat.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_require.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_rules.rb +362 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_scope.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task.rb +376 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_argument_parsing.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_arguments.rb +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_lib.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager.rb +158 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_task_with_arguments.rb +171 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_test_task.rb +119 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_thread_pool.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_top_level_functions.rb +71 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_rake_win32.rb +72 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_thread_history_display.rb +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/rake-10.1.0/test/test_trace_output.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/.document +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/.yardopts +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/Changelog.md +570 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/License.txt +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/README.md +235 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/exe/autospec +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/exe/rspec +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/Autotest.md +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/README.md +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/Upgrade.md +364 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/README.md +28 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/example_name_option.feature +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/exit_status.feature +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/format_option.feature +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/init.feature +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/line_number_appended_to_path.feature +140 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/line_number_option.feature +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/order.feature +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/pattern_option.feature +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/rake_task.feature +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/ruby.feature +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/command_line/tag.feature +91 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/configuration/alias_example_to.feature +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/configuration/custom_settings.feature +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/configuration/default_path.feature +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/configuration/fail_fast.feature +77 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/configuration/read_options_from_file.feature +87 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/example_groups/basic_structure.feature +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/example_groups/shared_context.feature +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/example_groups/shared_examples.feature +204 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/filtering/exclusion_filters.feature +139 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/filtering/if_and_unless.feature +168 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/filtering/inclusion_filters.feature +105 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/filtering/run_all_when_everything_filtered.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/formatters/custom_formatter.feature +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/formatters/text_formatter.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/helper_methods/arbitrary_methods.feature +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/helper_methods/let.feature +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/helper_methods/modules.feature +149 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/hooks/around_hooks.feature +343 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/hooks/before_and_after_hooks.feature +423 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/hooks/filtering.feature +234 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/metadata/current_example.feature +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/metadata/described_class.feature +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/metadata/user_defined.feature +113 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/mock_framework_integration/use_any_framework.feature +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/mock_framework_integration/use_flexmock.feature +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/mock_framework_integration/use_mocha.feature +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/mock_framework_integration/use_rr.feature +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/mock_framework_integration/use_rspec.feature +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/pending/pending_examples.feature +229 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/step_definitions/additional_cli_steps.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/subject/attribute_of_subject.feature +124 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/subject/explicit_subject.feature +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/subject/implicit_receiver.feature +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/subject/implicit_subject.feature +63 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/features/support/env.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/autotest/discover.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/autotest/rspec2.rb +73 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/autorun.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/backward_compatibility.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/command_line.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/configuration.rb +944 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/configuration_options.rb +129 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/deprecation.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/drb_command_line.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/drb_options.rb +87 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/dsl.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/example.rb +330 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/example_group.rb +466 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/extensions/kernel.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/extensions/ordered.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/extensions.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/filter_manager.rb +203 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/base_formatter.rb +168 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/base_text_formatter.rb +203 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/helpers.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/html_formatter.rb +464 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/progress_formatter.rb +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/hooks.rb +495 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/let.rb +110 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/load_path.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/metadata.rb +276 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/metadata_hash_builder.rb +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_flexmock.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_mocha.rb +29 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_rr.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_rspec.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/option_parser.rb +181 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/pending.rb +101 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/project_initializer.rb +87 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/rake_task.rb +179 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/reporter.rb +102 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/ruby_project.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/runner.rb +76 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/shared_context.rb +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/shared_example_group.rb +96 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/subject.rb +219 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/version.rb +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core/world.rb +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/lib/rspec/core.rb +126 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/autotest/discover_spec.rb +19 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/autotest/failed_results_re_spec.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/autotest/rspec_spec.rb +123 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/command_line/order_spec.rb +137 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/command_line_spec.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/configuration_options_spec.rb +377 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/configuration_spec.rb +1196 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/deprecations_spec.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/drb_command_line_spec.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/drb_options_spec.rb +180 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/dsl_spec.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/example_group_spec.rb +1098 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/example_spec.rb +370 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/filter_manager_spec.rb +256 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/base_text_formatter_spec.rb +363 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/helpers_spec.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +410 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.8.7.html +409 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.9.2.html +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.9.3.html +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatter_spec.rb +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +410 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +409 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +416 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatter_spec.rb +83 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/hooks_filtering_spec.rb +227 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/hooks_spec.rb +250 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/kernel_extensions_spec.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/let_spec.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/metadata_spec.rb +447 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/option_parser_spec.rb +166 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/pending_example_spec.rb +220 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/project_initializer_spec.rb +130 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/rake_task_spec.rb +138 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/reporter_spec.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_bar.rb +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_foo.rb +0 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_spec.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/formatter_specs.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/resources/utf8_encoded.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/rspec_matchers_spec.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/ruby_project_spec.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/runner_spec.rb +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/shared_context_spec.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/shared_example_group_spec.rb +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/subject_spec.rb +244 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core/world_spec.rb +144 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/rspec/core_spec.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/spec_helper.rb +98 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/support/config_options_helper.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/support/helper_methods.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/support/matchers.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/support/shared_example_groups.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-core-2.11.1/spec/support/spec_files.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/.document +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/.yardopts +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/Changelog.md +262 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/License.txt +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/README.md +224 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/README.md +49 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/Upgrade.md +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/README.md +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/be.feature +173 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/be_within.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/cover.feature +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/end_with.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/equality.feature +145 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/exist.feature +43 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/expect_change.feature +59 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/expect_error.feature +138 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/have.feature +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/include.feature +121 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/match.feature +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/operators.feature +221 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/predicates.feature +128 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/respond_to.feature +78 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/satisfy.feature +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/start_with.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/throw_symbol.feature +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/types.feature +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/built_in_matchers/yield.feature +146 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/custom_matchers/access_running_example.feature +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/custom_matchers/define_diffable_matcher.feature +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/custom_matchers/define_matcher.feature +340 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/customized_message.feature +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/diffing.feature +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/implicit_docstrings.feature +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/step_definitions/additional_cli_steps.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/support/env.rb +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/syntax_configuration.feature +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/features/test_frameworks/test_unit.feature +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/deprecation.rb +38 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/differ.rb +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/errors.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/expectation_target.rb +88 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/extensions/array.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/extensions/object.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/extensions.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/fail_with.rb +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/handler.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/syntax.rb +118 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/expectations.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/be_close.rb +9 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/be.rb +185 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/be_instance_of.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/be_within.rb +46 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/change.rb +133 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/cover.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/eq.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/eql.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/equal.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/exist.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/has.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/have.rb +108 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/include.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/match.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/match_array.rb +45 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/raise_error.rb +97 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/respond_to.rb +74 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/satisfy.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/throw_symbol.rb +94 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in/yield.rb +221 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/built_in.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/compatibility.rb +14 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/configuration.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/dsl.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/generated_descriptions.rb +36 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/matcher.rb +299 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/method_missing.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/operator_matcher.rb +84 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers/pretty.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec/matchers.rb +689 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/lib/rspec-expectations.rb +1 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/expectations/differ_spec.rb +153 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/expectations/expectation_target_spec.rb +65 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/expectations/fail_with_spec.rb +70 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/expectations/handler_spec.rb +206 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/base_matcher_spec.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/be_close_spec.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/be_instance_of_spec.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/be_kind_of_spec.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/be_spec.rb +452 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/be_within_spec.rb +80 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/change_spec.rb +528 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/configuration_spec.rb +202 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/cover_spec.rb +69 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/description_generation_spec.rb +176 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/dsl_spec.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/eq_spec.rb +54 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/eql_spec.rb +41 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/equal_spec.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/exist_spec.rb +110 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/has_spec.rb +118 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/have_spec.rb +461 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/include_spec.rb +367 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/match_array_spec.rb +124 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/match_spec.rb +61 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/matcher_spec.rb +434 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/matchers_spec.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/method_missing_spec.rb +24 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/raise_error_spec.rb +344 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/respond_to_spec.rb +295 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/satisfy_spec.rb +44 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/start_with_end_with_spec.rb +182 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/throw_symbol_spec.rb +116 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/rspec/matchers/yield_spec.rb +402 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/spec_helper.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/support/classes.rb +56 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/support/in_sub_process.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/support/matchers.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/support/ruby_version.rb +10 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/spec/support/shared_examples.rb +13 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/.document +5 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/.yardopts +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/Changelog.md +225 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/License.txt +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/README.md +276 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/README.md +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/Scope.md +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/Upgrade.md +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/argument_matchers/README.md +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/argument_matchers/explicit.feature +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/argument_matchers/general_matchers.feature +85 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/argument_matchers/type_matchers.feature +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/README.md +69 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/any_instance.feature +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/block_local_expectations.feature.pending +55 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/expect_message.feature +94 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/receive_counts.feature +209 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/README.md +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/any_instance.feature +133 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/as_null_object.feature +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/simple_return_value.feature +64 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/stub_chain.feature +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/stub_implementation.feature +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/method_stubs/to_ary.feature +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/outside_rspec/configuration.feature +82 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/outside_rspec/standalone.feature +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/step_definitions/additional_cli_steps.rb +4 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/stubbing_constants/README.md +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/stubbing_constants/stub_defined_constant.feature +79 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/stubbing_constants/stub_undefined_constant.feature +50 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/features/support/env.rb +6 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/chain.rb +77 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/expectation_chain.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/recorder.rb +199 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/stub_chain.rb +37 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance/stub_chain_chain.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/any_instance.rb +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/argument_list_matcher.rb +93 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/argument_matchers.rb +238 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/error_generator.rb +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/errors.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/example_methods.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/extensions/marshal.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/extensions/psych.rb +23 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/framework.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/message_expectation.rb +488 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/method_double.rb +164 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/methods.rb +155 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/mock.rb +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/order_group.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/proxy.rb +194 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/serialization.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/space.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/stashed_instance_method.rb +60 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/stub_const.rb +332 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/test_double.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks/version.rb +7 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/rspec/mocks.rb +39 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/lib/spec/mocks.rb +2 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/and_yield_spec.rb +114 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/any_instance_spec.rb +877 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/argument_expectation_spec.rb +34 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/at_least_spec.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/at_most_spec.rb +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/block_return_value_spec.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/double_spec.rb +12 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/mock_space_spec.rb +58 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/mock_spec.rb +730 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/multiple_return_value_spec.rb +119 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/null_object_mock_spec.rb +106 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/once_counts_spec.rb +52 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/options_hash_spec.rb +35 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/partial_mock_spec.rb +171 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/precise_counts_spec.rb +68 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/record_messages_spec.rb +26 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/serialization_spec.rb +111 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stash_spec.rb +27 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stashed_instance_method_spec.rb +53 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stub_chain_spec.rb +154 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stub_const_spec.rb +334 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stub_implementation_spec.rb +81 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stub_spec.rb +247 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/stubbed_message_expectations_spec.rb +47 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/test_double_spec.rb +57 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/to_ary_spec.rb +40 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks/twice_counts_spec.rb +66 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/rspec/mocks_spec.rb +51 -0
- data/vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/spec/spec_helper.rb +21 -0
- data/vendor/bundle/ruby/1.9.1/specifications/childprocess-0.3.9.gemspec +38 -0
- data/vendor/bundle/ruby/1.9.1/specifications/contest-0.1.3.gemspec +26 -0
- data/vendor/bundle/ruby/1.9.1/specifications/diff-lcs-1.1.3.gemspec +35 -0
- data/vendor/bundle/ruby/1.9.1/specifications/erubis-2.7.0.gemspec +28 -0
- data/vendor/bundle/ruby/1.9.1/specifications/ffi-1.9.0.gemspec +42 -0
- data/vendor/bundle/ruby/1.9.1/specifications/i18n-0.6.4.gemspec +39 -0
- data/vendor/bundle/ruby/1.9.1/specifications/log4r-1.1.10.gemspec +31 -0
- data/vendor/bundle/ruby/1.9.1/specifications/metaclass-0.0.1.gemspec +25 -0
- data/vendor/bundle/ruby/1.9.1/specifications/minitest-2.5.1.gemspec +33 -0
- data/vendor/bundle/ruby/1.9.1/specifications/mocha-0.14.0.gemspec +41 -0
- data/vendor/bundle/ruby/1.9.1/specifications/net-scp-1.1.2.gemspec +39 -0
- data/vendor/bundle/ruby/1.9.1/specifications/net-ssh-2.6.8.gemspec +35 -0
- data/vendor/bundle/ruby/1.9.1/specifications/rake-10.1.0.gemspec +35 -0
- data/vendor/bundle/ruby/1.9.1/specifications/rspec-core-2.11.1.gemspec +61 -0
- data/vendor/bundle/ruby/1.9.1/specifications/rspec-expectations-2.11.3.gemspec +40 -0
- data/vendor/bundle/ruby/1.9.1/specifications/rspec-mocks-2.11.3.gemspec +37 -0
- metadata +2087 -24
@@ -0,0 +1,1448 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (C) 2011 Anthony Green
|
3
|
+
Copyright (C) 2008 Red Hat, Inc
|
4
|
+
Copyright (C) 2007, 2008 Free Software Foundation, Inc
|
5
|
+
Copyright (c) 1998 Geoffrey Keating
|
6
|
+
|
7
|
+
PowerPC Foreign Function Interface
|
8
|
+
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
10
|
+
a copy of this software and associated documentation files (the
|
11
|
+
``Software''), to deal in the Software without restriction, including
|
12
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
13
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
14
|
+
permit persons to whom the Software is furnished to do so, subject to
|
15
|
+
the following conditions:
|
16
|
+
|
17
|
+
The above copyright notice and this permission notice shall be included
|
18
|
+
in all copies or substantial portions of the Software.
|
19
|
+
|
20
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
21
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
22
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
23
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
24
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
25
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
26
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
27
|
+
----------------------------------------------------------------------- */
|
28
|
+
|
29
|
+
#include <ffi.h>
|
30
|
+
#include <ffi_common.h>
|
31
|
+
|
32
|
+
#include <stdlib.h>
|
33
|
+
#include <stdio.h>
|
34
|
+
|
35
|
+
|
36
|
+
extern void ffi_closure_SYSV (void);
|
37
|
+
extern void FFI_HIDDEN ffi_closure_LINUX64 (void);
|
38
|
+
|
39
|
+
enum {
|
40
|
+
/* The assembly depends on these exact flags. */
|
41
|
+
FLAG_RETURNS_SMST = 1 << (31-31), /* Used for FFI_SYSV small structs. */
|
42
|
+
FLAG_RETURNS_NOTHING = 1 << (31-30), /* These go in cr7 */
|
43
|
+
FLAG_RETURNS_FP = 1 << (31-29),
|
44
|
+
FLAG_RETURNS_64BITS = 1 << (31-28),
|
45
|
+
|
46
|
+
FLAG_RETURNS_128BITS = 1 << (31-27), /* cr6 */
|
47
|
+
FLAG_SYSV_SMST_R4 = 1 << (31-26), /* use r4 for FFI_SYSV 8 byte
|
48
|
+
structs. */
|
49
|
+
FLAG_SYSV_SMST_R3 = 1 << (31-25), /* use r3 for FFI_SYSV 4 byte
|
50
|
+
structs. */
|
51
|
+
/* Bits (31-24) through (31-19) store shift value for SMST */
|
52
|
+
|
53
|
+
FLAG_ARG_NEEDS_COPY = 1 << (31- 7),
|
54
|
+
FLAG_FP_ARGUMENTS = 1 << (31- 6), /* cr1.eq; specified by ABI */
|
55
|
+
FLAG_4_GPR_ARGUMENTS = 1 << (31- 5),
|
56
|
+
FLAG_RETVAL_REFERENCE = 1 << (31- 4)
|
57
|
+
};
|
58
|
+
|
59
|
+
/* About the SYSV ABI. */
|
60
|
+
unsigned int NUM_GPR_ARG_REGISTERS = 8;
|
61
|
+
#ifndef __NO_FPRS__
|
62
|
+
unsigned int NUM_FPR_ARG_REGISTERS = 8;
|
63
|
+
#else
|
64
|
+
unsigned int NUM_FPR_ARG_REGISTERS = 0;
|
65
|
+
#endif
|
66
|
+
|
67
|
+
enum { ASM_NEEDS_REGISTERS = 4 };
|
68
|
+
|
69
|
+
/* ffi_prep_args_SYSV is called by the assembly routine once stack space
|
70
|
+
has been allocated for the function's arguments.
|
71
|
+
|
72
|
+
The stack layout we want looks like this:
|
73
|
+
|
74
|
+
| Return address from ffi_call_SYSV 4bytes | higher addresses
|
75
|
+
|--------------------------------------------|
|
76
|
+
| Previous backchain pointer 4 | stack pointer here
|
77
|
+
|--------------------------------------------|<+ <<< on entry to
|
78
|
+
| Saved r28-r31 4*4 | | ffi_call_SYSV
|
79
|
+
|--------------------------------------------| |
|
80
|
+
| GPR registers r3-r10 8*4 | | ffi_call_SYSV
|
81
|
+
|--------------------------------------------| |
|
82
|
+
| FPR registers f1-f8 (optional) 8*8 | |
|
83
|
+
|--------------------------------------------| | stack |
|
84
|
+
| Space for copied structures | | grows |
|
85
|
+
|--------------------------------------------| | down V
|
86
|
+
| Parameters that didn't fit in registers | |
|
87
|
+
|--------------------------------------------| | lower addresses
|
88
|
+
| Space for callee's LR 4 | |
|
89
|
+
|--------------------------------------------| | stack pointer here
|
90
|
+
| Current backchain pointer 4 |-/ during
|
91
|
+
|--------------------------------------------| <<< ffi_call_SYSV
|
92
|
+
|
93
|
+
*/
|
94
|
+
|
95
|
+
void
|
96
|
+
ffi_prep_args_SYSV (extended_cif *ecif, unsigned *const stack)
|
97
|
+
{
|
98
|
+
const unsigned bytes = ecif->cif->bytes;
|
99
|
+
const unsigned flags = ecif->cif->flags;
|
100
|
+
|
101
|
+
typedef union {
|
102
|
+
char *c;
|
103
|
+
unsigned *u;
|
104
|
+
long long *ll;
|
105
|
+
float *f;
|
106
|
+
double *d;
|
107
|
+
} valp;
|
108
|
+
|
109
|
+
/* 'stacktop' points at the previous backchain pointer. */
|
110
|
+
valp stacktop;
|
111
|
+
|
112
|
+
/* 'gpr_base' points at the space for gpr3, and grows upwards as
|
113
|
+
we use GPR registers. */
|
114
|
+
valp gpr_base;
|
115
|
+
int intarg_count;
|
116
|
+
|
117
|
+
/* 'fpr_base' points at the space for fpr1, and grows upwards as
|
118
|
+
we use FPR registers. */
|
119
|
+
valp fpr_base;
|
120
|
+
int fparg_count;
|
121
|
+
|
122
|
+
/* 'copy_space' grows down as we put structures in it. It should
|
123
|
+
stay 16-byte aligned. */
|
124
|
+
valp copy_space;
|
125
|
+
|
126
|
+
/* 'next_arg' grows up as we put parameters in it. */
|
127
|
+
valp next_arg;
|
128
|
+
|
129
|
+
int i, ii MAYBE_UNUSED;
|
130
|
+
ffi_type **ptr;
|
131
|
+
double double_tmp;
|
132
|
+
union {
|
133
|
+
void **v;
|
134
|
+
char **c;
|
135
|
+
signed char **sc;
|
136
|
+
unsigned char **uc;
|
137
|
+
signed short **ss;
|
138
|
+
unsigned short **us;
|
139
|
+
unsigned int **ui;
|
140
|
+
long long **ll;
|
141
|
+
float **f;
|
142
|
+
double **d;
|
143
|
+
} p_argv;
|
144
|
+
size_t struct_copy_size;
|
145
|
+
unsigned gprvalue;
|
146
|
+
|
147
|
+
if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT)
|
148
|
+
NUM_FPR_ARG_REGISTERS = 0;
|
149
|
+
|
150
|
+
stacktop.c = (char *) stack + bytes;
|
151
|
+
gpr_base.u = stacktop.u - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS;
|
152
|
+
intarg_count = 0;
|
153
|
+
fpr_base.d = gpr_base.d - NUM_FPR_ARG_REGISTERS;
|
154
|
+
fparg_count = 0;
|
155
|
+
copy_space.c = ((flags & FLAG_FP_ARGUMENTS) ? fpr_base.c : gpr_base.c);
|
156
|
+
next_arg.u = stack + 2;
|
157
|
+
|
158
|
+
/* Check that everything starts aligned properly. */
|
159
|
+
FFI_ASSERT (((unsigned) (char *) stack & 0xF) == 0);
|
160
|
+
FFI_ASSERT (((unsigned) copy_space.c & 0xF) == 0);
|
161
|
+
FFI_ASSERT (((unsigned) stacktop.c & 0xF) == 0);
|
162
|
+
FFI_ASSERT ((bytes & 0xF) == 0);
|
163
|
+
FFI_ASSERT (copy_space.c >= next_arg.c);
|
164
|
+
|
165
|
+
/* Deal with return values that are actually pass-by-reference. */
|
166
|
+
if (flags & FLAG_RETVAL_REFERENCE)
|
167
|
+
{
|
168
|
+
*gpr_base.u++ = (unsigned long) (char *) ecif->rvalue;
|
169
|
+
intarg_count++;
|
170
|
+
}
|
171
|
+
|
172
|
+
/* Now for the arguments. */
|
173
|
+
p_argv.v = ecif->avalue;
|
174
|
+
for (ptr = ecif->cif->arg_types, i = ecif->cif->nargs;
|
175
|
+
i > 0;
|
176
|
+
i--, ptr++, p_argv.v++)
|
177
|
+
{
|
178
|
+
switch ((*ptr)->type)
|
179
|
+
{
|
180
|
+
case FFI_TYPE_FLOAT:
|
181
|
+
/* With FFI_LINUX_SOFT_FLOAT floats are handled like UINT32. */
|
182
|
+
if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT)
|
183
|
+
goto soft_float_prep;
|
184
|
+
double_tmp = **p_argv.f;
|
185
|
+
if (fparg_count >= NUM_FPR_ARG_REGISTERS)
|
186
|
+
{
|
187
|
+
*next_arg.f = (float) double_tmp;
|
188
|
+
next_arg.u += 1;
|
189
|
+
intarg_count++;
|
190
|
+
}
|
191
|
+
else
|
192
|
+
*fpr_base.d++ = double_tmp;
|
193
|
+
fparg_count++;
|
194
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
195
|
+
break;
|
196
|
+
|
197
|
+
case FFI_TYPE_DOUBLE:
|
198
|
+
/* With FFI_LINUX_SOFT_FLOAT doubles are handled like UINT64. */
|
199
|
+
if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT)
|
200
|
+
goto soft_double_prep;
|
201
|
+
double_tmp = **p_argv.d;
|
202
|
+
|
203
|
+
if (fparg_count >= NUM_FPR_ARG_REGISTERS)
|
204
|
+
{
|
205
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS
|
206
|
+
&& intarg_count % 2 != 0)
|
207
|
+
{
|
208
|
+
intarg_count++;
|
209
|
+
next_arg.u++;
|
210
|
+
}
|
211
|
+
*next_arg.d = double_tmp;
|
212
|
+
next_arg.u += 2;
|
213
|
+
}
|
214
|
+
else
|
215
|
+
*fpr_base.d++ = double_tmp;
|
216
|
+
fparg_count++;
|
217
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
218
|
+
break;
|
219
|
+
|
220
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
221
|
+
case FFI_TYPE_LONGDOUBLE:
|
222
|
+
if ((ecif->cif->abi != FFI_LINUX)
|
223
|
+
&& (ecif->cif->abi != FFI_LINUX_SOFT_FLOAT))
|
224
|
+
goto do_struct;
|
225
|
+
/* The soft float ABI for long doubles works like this,
|
226
|
+
a long double is passed in four consecutive gprs if available.
|
227
|
+
A maximum of 2 long doubles can be passed in gprs.
|
228
|
+
If we do not have 4 gprs left, the long double is passed on the
|
229
|
+
stack, 4-byte aligned. */
|
230
|
+
if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT)
|
231
|
+
{
|
232
|
+
unsigned int int_tmp = (*p_argv.ui)[0];
|
233
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS - 3)
|
234
|
+
{
|
235
|
+
if (intarg_count < NUM_GPR_ARG_REGISTERS)
|
236
|
+
intarg_count += NUM_GPR_ARG_REGISTERS - intarg_count;
|
237
|
+
*next_arg.u = int_tmp;
|
238
|
+
next_arg.u++;
|
239
|
+
for (ii = 1; ii < 4; ii++)
|
240
|
+
{
|
241
|
+
int_tmp = (*p_argv.ui)[ii];
|
242
|
+
*next_arg.u = int_tmp;
|
243
|
+
next_arg.u++;
|
244
|
+
}
|
245
|
+
}
|
246
|
+
else
|
247
|
+
{
|
248
|
+
*gpr_base.u++ = int_tmp;
|
249
|
+
for (ii = 1; ii < 4; ii++)
|
250
|
+
{
|
251
|
+
int_tmp = (*p_argv.ui)[ii];
|
252
|
+
*gpr_base.u++ = int_tmp;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
intarg_count +=4;
|
256
|
+
}
|
257
|
+
else
|
258
|
+
{
|
259
|
+
double_tmp = (*p_argv.d)[0];
|
260
|
+
|
261
|
+
if (fparg_count >= NUM_FPR_ARG_REGISTERS - 1)
|
262
|
+
{
|
263
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS
|
264
|
+
&& intarg_count % 2 != 0)
|
265
|
+
{
|
266
|
+
intarg_count++;
|
267
|
+
next_arg.u++;
|
268
|
+
}
|
269
|
+
*next_arg.d = double_tmp;
|
270
|
+
next_arg.u += 2;
|
271
|
+
double_tmp = (*p_argv.d)[1];
|
272
|
+
*next_arg.d = double_tmp;
|
273
|
+
next_arg.u += 2;
|
274
|
+
}
|
275
|
+
else
|
276
|
+
{
|
277
|
+
*fpr_base.d++ = double_tmp;
|
278
|
+
double_tmp = (*p_argv.d)[1];
|
279
|
+
*fpr_base.d++ = double_tmp;
|
280
|
+
}
|
281
|
+
|
282
|
+
fparg_count += 2;
|
283
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
284
|
+
}
|
285
|
+
break;
|
286
|
+
#endif
|
287
|
+
|
288
|
+
case FFI_TYPE_UINT64:
|
289
|
+
case FFI_TYPE_SINT64:
|
290
|
+
soft_double_prep:
|
291
|
+
if (intarg_count == NUM_GPR_ARG_REGISTERS-1)
|
292
|
+
intarg_count++;
|
293
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS)
|
294
|
+
{
|
295
|
+
if (intarg_count % 2 != 0)
|
296
|
+
{
|
297
|
+
intarg_count++;
|
298
|
+
next_arg.u++;
|
299
|
+
}
|
300
|
+
*next_arg.ll = **p_argv.ll;
|
301
|
+
next_arg.u += 2;
|
302
|
+
}
|
303
|
+
else
|
304
|
+
{
|
305
|
+
/* whoops: abi states only certain register pairs
|
306
|
+
* can be used for passing long long int
|
307
|
+
* specifically (r3,r4), (r5,r6), (r7,r8),
|
308
|
+
* (r9,r10) and if next arg is long long but
|
309
|
+
* not correct starting register of pair then skip
|
310
|
+
* until the proper starting register
|
311
|
+
*/
|
312
|
+
if (intarg_count % 2 != 0)
|
313
|
+
{
|
314
|
+
intarg_count ++;
|
315
|
+
gpr_base.u++;
|
316
|
+
}
|
317
|
+
*gpr_base.ll++ = **p_argv.ll;
|
318
|
+
}
|
319
|
+
intarg_count += 2;
|
320
|
+
break;
|
321
|
+
|
322
|
+
case FFI_TYPE_STRUCT:
|
323
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
324
|
+
do_struct:
|
325
|
+
#endif
|
326
|
+
struct_copy_size = ((*ptr)->size + 15) & ~0xF;
|
327
|
+
copy_space.c -= struct_copy_size;
|
328
|
+
memcpy (copy_space.c, *p_argv.c, (*ptr)->size);
|
329
|
+
|
330
|
+
gprvalue = (unsigned long) copy_space.c;
|
331
|
+
|
332
|
+
FFI_ASSERT (copy_space.c > next_arg.c);
|
333
|
+
FFI_ASSERT (flags & FLAG_ARG_NEEDS_COPY);
|
334
|
+
goto putgpr;
|
335
|
+
|
336
|
+
case FFI_TYPE_UINT8:
|
337
|
+
gprvalue = **p_argv.uc;
|
338
|
+
goto putgpr;
|
339
|
+
case FFI_TYPE_SINT8:
|
340
|
+
gprvalue = **p_argv.sc;
|
341
|
+
goto putgpr;
|
342
|
+
case FFI_TYPE_UINT16:
|
343
|
+
gprvalue = **p_argv.us;
|
344
|
+
goto putgpr;
|
345
|
+
case FFI_TYPE_SINT16:
|
346
|
+
gprvalue = **p_argv.ss;
|
347
|
+
goto putgpr;
|
348
|
+
|
349
|
+
case FFI_TYPE_INT:
|
350
|
+
case FFI_TYPE_UINT32:
|
351
|
+
case FFI_TYPE_SINT32:
|
352
|
+
case FFI_TYPE_POINTER:
|
353
|
+
soft_float_prep:
|
354
|
+
|
355
|
+
gprvalue = **p_argv.ui;
|
356
|
+
|
357
|
+
putgpr:
|
358
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS)
|
359
|
+
*next_arg.u++ = gprvalue;
|
360
|
+
else
|
361
|
+
*gpr_base.u++ = gprvalue;
|
362
|
+
intarg_count++;
|
363
|
+
break;
|
364
|
+
}
|
365
|
+
}
|
366
|
+
|
367
|
+
/* Check that we didn't overrun the stack... */
|
368
|
+
FFI_ASSERT (copy_space.c >= next_arg.c);
|
369
|
+
FFI_ASSERT (gpr_base.u <= stacktop.u - ASM_NEEDS_REGISTERS);
|
370
|
+
FFI_ASSERT (fpr_base.u
|
371
|
+
<= stacktop.u - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS);
|
372
|
+
FFI_ASSERT (flags & FLAG_4_GPR_ARGUMENTS || intarg_count <= 4);
|
373
|
+
}
|
374
|
+
|
375
|
+
/* About the LINUX64 ABI. */
|
376
|
+
enum {
|
377
|
+
NUM_GPR_ARG_REGISTERS64 = 8,
|
378
|
+
NUM_FPR_ARG_REGISTERS64 = 13
|
379
|
+
};
|
380
|
+
enum { ASM_NEEDS_REGISTERS64 = 4 };
|
381
|
+
|
382
|
+
/* ffi_prep_args64 is called by the assembly routine once stack space
|
383
|
+
has been allocated for the function's arguments.
|
384
|
+
|
385
|
+
The stack layout we want looks like this:
|
386
|
+
|
387
|
+
| Ret addr from ffi_call_LINUX64 8bytes | higher addresses
|
388
|
+
|--------------------------------------------|
|
389
|
+
| CR save area 8bytes |
|
390
|
+
|--------------------------------------------|
|
391
|
+
| Previous backchain pointer 8 | stack pointer here
|
392
|
+
|--------------------------------------------|<+ <<< on entry to
|
393
|
+
| Saved r28-r31 4*8 | | ffi_call_LINUX64
|
394
|
+
|--------------------------------------------| |
|
395
|
+
| GPR registers r3-r10 8*8 | |
|
396
|
+
|--------------------------------------------| |
|
397
|
+
| FPR registers f1-f13 (optional) 13*8 | |
|
398
|
+
|--------------------------------------------| |
|
399
|
+
| Parameter save area | |
|
400
|
+
|--------------------------------------------| |
|
401
|
+
| TOC save area 8 | |
|
402
|
+
|--------------------------------------------| | stack |
|
403
|
+
| Linker doubleword 8 | | grows |
|
404
|
+
|--------------------------------------------| | down V
|
405
|
+
| Compiler doubleword 8 | |
|
406
|
+
|--------------------------------------------| | lower addresses
|
407
|
+
| Space for callee's LR 8 | |
|
408
|
+
|--------------------------------------------| |
|
409
|
+
| CR save area 8 | |
|
410
|
+
|--------------------------------------------| | stack pointer here
|
411
|
+
| Current backchain pointer 8 |-/ during
|
412
|
+
|--------------------------------------------| <<< ffi_call_LINUX64
|
413
|
+
|
414
|
+
*/
|
415
|
+
|
416
|
+
void FFI_HIDDEN
|
417
|
+
ffi_prep_args64 (extended_cif *ecif, unsigned long *const stack)
|
418
|
+
{
|
419
|
+
const unsigned long bytes = ecif->cif->bytes;
|
420
|
+
const unsigned long flags = ecif->cif->flags;
|
421
|
+
|
422
|
+
typedef union {
|
423
|
+
char *c;
|
424
|
+
unsigned long *ul;
|
425
|
+
float *f;
|
426
|
+
double *d;
|
427
|
+
} valp;
|
428
|
+
|
429
|
+
/* 'stacktop' points at the previous backchain pointer. */
|
430
|
+
valp stacktop;
|
431
|
+
|
432
|
+
/* 'next_arg' points at the space for gpr3, and grows upwards as
|
433
|
+
we use GPR registers, then continues at rest. */
|
434
|
+
valp gpr_base;
|
435
|
+
valp gpr_end;
|
436
|
+
valp rest;
|
437
|
+
valp next_arg;
|
438
|
+
|
439
|
+
/* 'fpr_base' points at the space for fpr3, and grows upwards as
|
440
|
+
we use FPR registers. */
|
441
|
+
valp fpr_base;
|
442
|
+
int fparg_count;
|
443
|
+
|
444
|
+
int i, words;
|
445
|
+
ffi_type **ptr;
|
446
|
+
double double_tmp;
|
447
|
+
union {
|
448
|
+
void **v;
|
449
|
+
char **c;
|
450
|
+
signed char **sc;
|
451
|
+
unsigned char **uc;
|
452
|
+
signed short **ss;
|
453
|
+
unsigned short **us;
|
454
|
+
signed int **si;
|
455
|
+
unsigned int **ui;
|
456
|
+
unsigned long **ul;
|
457
|
+
float **f;
|
458
|
+
double **d;
|
459
|
+
} p_argv;
|
460
|
+
unsigned long gprvalue;
|
461
|
+
|
462
|
+
stacktop.c = (char *) stack + bytes;
|
463
|
+
gpr_base.ul = stacktop.ul - ASM_NEEDS_REGISTERS64 - NUM_GPR_ARG_REGISTERS64;
|
464
|
+
gpr_end.ul = gpr_base.ul + NUM_GPR_ARG_REGISTERS64;
|
465
|
+
rest.ul = stack + 6 + NUM_GPR_ARG_REGISTERS64;
|
466
|
+
fpr_base.d = gpr_base.d - NUM_FPR_ARG_REGISTERS64;
|
467
|
+
fparg_count = 0;
|
468
|
+
next_arg.ul = gpr_base.ul;
|
469
|
+
|
470
|
+
/* Check that everything starts aligned properly. */
|
471
|
+
FFI_ASSERT (((unsigned long) (char *) stack & 0xF) == 0);
|
472
|
+
FFI_ASSERT (((unsigned long) stacktop.c & 0xF) == 0);
|
473
|
+
FFI_ASSERT ((bytes & 0xF) == 0);
|
474
|
+
|
475
|
+
/* Deal with return values that are actually pass-by-reference. */
|
476
|
+
if (flags & FLAG_RETVAL_REFERENCE)
|
477
|
+
*next_arg.ul++ = (unsigned long) (char *) ecif->rvalue;
|
478
|
+
|
479
|
+
/* Now for the arguments. */
|
480
|
+
p_argv.v = ecif->avalue;
|
481
|
+
for (ptr = ecif->cif->arg_types, i = ecif->cif->nargs;
|
482
|
+
i > 0;
|
483
|
+
i--, ptr++, p_argv.v++)
|
484
|
+
{
|
485
|
+
switch ((*ptr)->type)
|
486
|
+
{
|
487
|
+
case FFI_TYPE_FLOAT:
|
488
|
+
double_tmp = **p_argv.f;
|
489
|
+
*next_arg.f = (float) double_tmp;
|
490
|
+
if (++next_arg.ul == gpr_end.ul)
|
491
|
+
next_arg.ul = rest.ul;
|
492
|
+
if (fparg_count < NUM_FPR_ARG_REGISTERS64)
|
493
|
+
*fpr_base.d++ = double_tmp;
|
494
|
+
fparg_count++;
|
495
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
496
|
+
break;
|
497
|
+
|
498
|
+
case FFI_TYPE_DOUBLE:
|
499
|
+
double_tmp = **p_argv.d;
|
500
|
+
*next_arg.d = double_tmp;
|
501
|
+
if (++next_arg.ul == gpr_end.ul)
|
502
|
+
next_arg.ul = rest.ul;
|
503
|
+
if (fparg_count < NUM_FPR_ARG_REGISTERS64)
|
504
|
+
*fpr_base.d++ = double_tmp;
|
505
|
+
fparg_count++;
|
506
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
507
|
+
break;
|
508
|
+
|
509
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
510
|
+
case FFI_TYPE_LONGDOUBLE:
|
511
|
+
double_tmp = (*p_argv.d)[0];
|
512
|
+
*next_arg.d = double_tmp;
|
513
|
+
if (++next_arg.ul == gpr_end.ul)
|
514
|
+
next_arg.ul = rest.ul;
|
515
|
+
if (fparg_count < NUM_FPR_ARG_REGISTERS64)
|
516
|
+
*fpr_base.d++ = double_tmp;
|
517
|
+
fparg_count++;
|
518
|
+
double_tmp = (*p_argv.d)[1];
|
519
|
+
*next_arg.d = double_tmp;
|
520
|
+
if (++next_arg.ul == gpr_end.ul)
|
521
|
+
next_arg.ul = rest.ul;
|
522
|
+
if (fparg_count < NUM_FPR_ARG_REGISTERS64)
|
523
|
+
*fpr_base.d++ = double_tmp;
|
524
|
+
fparg_count++;
|
525
|
+
FFI_ASSERT (__LDBL_MANT_DIG__ == 106);
|
526
|
+
FFI_ASSERT (flags & FLAG_FP_ARGUMENTS);
|
527
|
+
break;
|
528
|
+
#endif
|
529
|
+
|
530
|
+
case FFI_TYPE_STRUCT:
|
531
|
+
words = ((*ptr)->size + 7) / 8;
|
532
|
+
if (next_arg.ul >= gpr_base.ul && next_arg.ul + words > gpr_end.ul)
|
533
|
+
{
|
534
|
+
size_t first = gpr_end.c - next_arg.c;
|
535
|
+
memcpy (next_arg.c, *p_argv.c, first);
|
536
|
+
memcpy (rest.c, *p_argv.c + first, (*ptr)->size - first);
|
537
|
+
next_arg.c = rest.c + words * 8 - first;
|
538
|
+
}
|
539
|
+
else
|
540
|
+
{
|
541
|
+
char *where = next_arg.c;
|
542
|
+
|
543
|
+
/* Structures with size less than eight bytes are passed
|
544
|
+
left-padded. */
|
545
|
+
if ((*ptr)->size < 8)
|
546
|
+
where += 8 - (*ptr)->size;
|
547
|
+
|
548
|
+
memcpy (where, *p_argv.c, (*ptr)->size);
|
549
|
+
next_arg.ul += words;
|
550
|
+
if (next_arg.ul == gpr_end.ul)
|
551
|
+
next_arg.ul = rest.ul;
|
552
|
+
}
|
553
|
+
break;
|
554
|
+
|
555
|
+
case FFI_TYPE_UINT8:
|
556
|
+
gprvalue = **p_argv.uc;
|
557
|
+
goto putgpr;
|
558
|
+
case FFI_TYPE_SINT8:
|
559
|
+
gprvalue = **p_argv.sc;
|
560
|
+
goto putgpr;
|
561
|
+
case FFI_TYPE_UINT16:
|
562
|
+
gprvalue = **p_argv.us;
|
563
|
+
goto putgpr;
|
564
|
+
case FFI_TYPE_SINT16:
|
565
|
+
gprvalue = **p_argv.ss;
|
566
|
+
goto putgpr;
|
567
|
+
case FFI_TYPE_UINT32:
|
568
|
+
gprvalue = **p_argv.ui;
|
569
|
+
goto putgpr;
|
570
|
+
case FFI_TYPE_INT:
|
571
|
+
case FFI_TYPE_SINT32:
|
572
|
+
gprvalue = **p_argv.si;
|
573
|
+
goto putgpr;
|
574
|
+
|
575
|
+
case FFI_TYPE_UINT64:
|
576
|
+
case FFI_TYPE_SINT64:
|
577
|
+
case FFI_TYPE_POINTER:
|
578
|
+
gprvalue = **p_argv.ul;
|
579
|
+
putgpr:
|
580
|
+
*next_arg.ul++ = gprvalue;
|
581
|
+
if (next_arg.ul == gpr_end.ul)
|
582
|
+
next_arg.ul = rest.ul;
|
583
|
+
break;
|
584
|
+
}
|
585
|
+
}
|
586
|
+
|
587
|
+
FFI_ASSERT (flags & FLAG_4_GPR_ARGUMENTS
|
588
|
+
|| (next_arg.ul >= gpr_base.ul
|
589
|
+
&& next_arg.ul <= gpr_base.ul + 4));
|
590
|
+
}
|
591
|
+
|
592
|
+
|
593
|
+
|
594
|
+
/* Perform machine dependent cif processing */
|
595
|
+
ffi_status
|
596
|
+
ffi_prep_cif_machdep (ffi_cif *cif)
|
597
|
+
{
|
598
|
+
/* All this is for the SYSV and LINUX64 ABI. */
|
599
|
+
int i;
|
600
|
+
ffi_type **ptr;
|
601
|
+
unsigned bytes;
|
602
|
+
int fparg_count = 0, intarg_count = 0;
|
603
|
+
unsigned flags = 0;
|
604
|
+
unsigned struct_copy_size = 0;
|
605
|
+
unsigned type = cif->rtype->type;
|
606
|
+
unsigned size = cif->rtype->size;
|
607
|
+
|
608
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
609
|
+
NUM_FPR_ARG_REGISTERS = 0;
|
610
|
+
|
611
|
+
if (cif->abi != FFI_LINUX64)
|
612
|
+
{
|
613
|
+
/* All the machine-independent calculation of cif->bytes will be wrong.
|
614
|
+
Redo the calculation for SYSV. */
|
615
|
+
|
616
|
+
/* Space for the frame pointer, callee's LR, and the asm's temp regs. */
|
617
|
+
bytes = (2 + ASM_NEEDS_REGISTERS) * sizeof (int);
|
618
|
+
|
619
|
+
/* Space for the GPR registers. */
|
620
|
+
bytes += NUM_GPR_ARG_REGISTERS * sizeof (int);
|
621
|
+
}
|
622
|
+
else
|
623
|
+
{
|
624
|
+
/* 64-bit ABI. */
|
625
|
+
|
626
|
+
/* Space for backchain, CR, LR, cc/ld doubleword, TOC and the asm's temp
|
627
|
+
regs. */
|
628
|
+
bytes = (6 + ASM_NEEDS_REGISTERS64) * sizeof (long);
|
629
|
+
|
630
|
+
/* Space for the mandatory parm save area and general registers. */
|
631
|
+
bytes += 2 * NUM_GPR_ARG_REGISTERS64 * sizeof (long);
|
632
|
+
}
|
633
|
+
|
634
|
+
/* Return value handling. The rules for SYSV are as follows:
|
635
|
+
- 32-bit (or less) integer values are returned in gpr3;
|
636
|
+
- Structures of size <= 4 bytes also returned in gpr3;
|
637
|
+
- 64-bit integer values and structures between 5 and 8 bytes are returned
|
638
|
+
in gpr3 and gpr4;
|
639
|
+
- Single/double FP values are returned in fpr1;
|
640
|
+
- Larger structures are allocated space and a pointer is passed as
|
641
|
+
the first argument.
|
642
|
+
- long doubles (if not equivalent to double) are returned in
|
643
|
+
fpr1,fpr2 for Linux and as for large structs for SysV.
|
644
|
+
For LINUX64:
|
645
|
+
- integer values in gpr3;
|
646
|
+
- Structures/Unions by reference;
|
647
|
+
- Single/double FP values in fpr1, long double in fpr1,fpr2.
|
648
|
+
- soft-float float/doubles are treated as UINT32/UINT64 respectivley.
|
649
|
+
- soft-float long doubles are returned in gpr3-gpr6. */
|
650
|
+
switch (type)
|
651
|
+
{
|
652
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
653
|
+
case FFI_TYPE_LONGDOUBLE:
|
654
|
+
if (cif->abi != FFI_LINUX && cif->abi != FFI_LINUX64
|
655
|
+
&& cif->abi != FFI_LINUX_SOFT_FLOAT)
|
656
|
+
goto byref;
|
657
|
+
flags |= FLAG_RETURNS_128BITS;
|
658
|
+
/* Fall through. */
|
659
|
+
#endif
|
660
|
+
case FFI_TYPE_DOUBLE:
|
661
|
+
flags |= FLAG_RETURNS_64BITS;
|
662
|
+
/* Fall through. */
|
663
|
+
case FFI_TYPE_FLOAT:
|
664
|
+
/* With FFI_LINUX_SOFT_FLOAT no fp registers are used. */
|
665
|
+
if (cif->abi != FFI_LINUX_SOFT_FLOAT)
|
666
|
+
flags |= FLAG_RETURNS_FP;
|
667
|
+
break;
|
668
|
+
|
669
|
+
case FFI_TYPE_UINT64:
|
670
|
+
case FFI_TYPE_SINT64:
|
671
|
+
flags |= FLAG_RETURNS_64BITS;
|
672
|
+
break;
|
673
|
+
|
674
|
+
case FFI_TYPE_STRUCT:
|
675
|
+
if (cif->abi == FFI_SYSV)
|
676
|
+
{
|
677
|
+
/* The final SYSV ABI says that structures smaller or equal 8 bytes
|
678
|
+
are returned in r3/r4. The FFI_GCC_SYSV ABI instead returns them
|
679
|
+
in memory. */
|
680
|
+
|
681
|
+
/* Treat structs with size <= 8 bytes. */
|
682
|
+
if (size <= 8)
|
683
|
+
{
|
684
|
+
flags |= FLAG_RETURNS_SMST;
|
685
|
+
/* These structs are returned in r3. We pack the type and the
|
686
|
+
precalculated shift value (needed in the sysv.S) into flags.
|
687
|
+
The same applies for the structs returned in r3/r4. */
|
688
|
+
if (size <= 4)
|
689
|
+
{
|
690
|
+
flags |= FLAG_SYSV_SMST_R3;
|
691
|
+
flags |= 8 * (4 - size) << 8;
|
692
|
+
break;
|
693
|
+
}
|
694
|
+
/* These structs are returned in r3 and r4. See above. */
|
695
|
+
if (size <= 8)
|
696
|
+
{
|
697
|
+
flags |= FLAG_SYSV_SMST_R3 | FLAG_SYSV_SMST_R4;
|
698
|
+
flags |= 8 * (8 - size) << 8;
|
699
|
+
break;
|
700
|
+
}
|
701
|
+
}
|
702
|
+
}
|
703
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
704
|
+
byref:
|
705
|
+
#endif
|
706
|
+
intarg_count++;
|
707
|
+
flags |= FLAG_RETVAL_REFERENCE;
|
708
|
+
/* Fall through. */
|
709
|
+
case FFI_TYPE_VOID:
|
710
|
+
flags |= FLAG_RETURNS_NOTHING;
|
711
|
+
break;
|
712
|
+
|
713
|
+
default:
|
714
|
+
/* Returns 32-bit integer, or similar. Nothing to do here. */
|
715
|
+
break;
|
716
|
+
}
|
717
|
+
|
718
|
+
if (cif->abi != FFI_LINUX64)
|
719
|
+
/* The first NUM_GPR_ARG_REGISTERS words of integer arguments, and the
|
720
|
+
first NUM_FPR_ARG_REGISTERS fp arguments, go in registers; the rest
|
721
|
+
goes on the stack. Structures and long doubles (if not equivalent
|
722
|
+
to double) are passed as a pointer to a copy of the structure.
|
723
|
+
Stuff on the stack needs to keep proper alignment. */
|
724
|
+
for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
|
725
|
+
{
|
726
|
+
switch ((*ptr)->type)
|
727
|
+
{
|
728
|
+
case FFI_TYPE_FLOAT:
|
729
|
+
/* With FFI_LINUX_SOFT_FLOAT floats are handled like UINT32. */
|
730
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
731
|
+
goto soft_float_cif;
|
732
|
+
fparg_count++;
|
733
|
+
/* floating singles are not 8-aligned on stack */
|
734
|
+
break;
|
735
|
+
|
736
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
737
|
+
case FFI_TYPE_LONGDOUBLE:
|
738
|
+
if (cif->abi != FFI_LINUX && cif->abi != FFI_LINUX_SOFT_FLOAT)
|
739
|
+
goto do_struct;
|
740
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
741
|
+
{
|
742
|
+
if (intarg_count >= NUM_GPR_ARG_REGISTERS - 3
|
743
|
+
|| intarg_count < NUM_GPR_ARG_REGISTERS)
|
744
|
+
/* A long double in FFI_LINUX_SOFT_FLOAT can use only
|
745
|
+
a set of four consecutive gprs. If we have not enough,
|
746
|
+
we have to adjust the intarg_count value. */
|
747
|
+
intarg_count += NUM_GPR_ARG_REGISTERS - intarg_count;
|
748
|
+
intarg_count += 4;
|
749
|
+
break;
|
750
|
+
}
|
751
|
+
else
|
752
|
+
fparg_count++;
|
753
|
+
/* Fall thru */
|
754
|
+
#endif
|
755
|
+
case FFI_TYPE_DOUBLE:
|
756
|
+
/* With FFI_LINUX_SOFT_FLOAT doubles are handled like UINT64. */
|
757
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
758
|
+
goto soft_double_cif;
|
759
|
+
fparg_count++;
|
760
|
+
/* If this FP arg is going on the stack, it must be
|
761
|
+
8-byte-aligned. */
|
762
|
+
if (fparg_count > NUM_FPR_ARG_REGISTERS
|
763
|
+
&& intarg_count >= NUM_GPR_ARG_REGISTERS
|
764
|
+
&& intarg_count % 2 != 0)
|
765
|
+
intarg_count++;
|
766
|
+
break;
|
767
|
+
|
768
|
+
case FFI_TYPE_UINT64:
|
769
|
+
case FFI_TYPE_SINT64:
|
770
|
+
soft_double_cif:
|
771
|
+
/* 'long long' arguments are passed as two words, but
|
772
|
+
either both words must fit in registers or both go
|
773
|
+
on the stack. If they go on the stack, they must
|
774
|
+
be 8-byte-aligned.
|
775
|
+
|
776
|
+
Also, only certain register pairs can be used for
|
777
|
+
passing long long int -- specifically (r3,r4), (r5,r6),
|
778
|
+
(r7,r8), (r9,r10).
|
779
|
+
*/
|
780
|
+
if (intarg_count == NUM_GPR_ARG_REGISTERS-1
|
781
|
+
|| intarg_count % 2 != 0)
|
782
|
+
intarg_count++;
|
783
|
+
intarg_count += 2;
|
784
|
+
break;
|
785
|
+
|
786
|
+
case FFI_TYPE_STRUCT:
|
787
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
788
|
+
do_struct:
|
789
|
+
#endif
|
790
|
+
/* We must allocate space for a copy of these to enforce
|
791
|
+
pass-by-value. Pad the space up to a multiple of 16
|
792
|
+
bytes (the maximum alignment required for anything under
|
793
|
+
the SYSV ABI). */
|
794
|
+
struct_copy_size += ((*ptr)->size + 15) & ~0xF;
|
795
|
+
/* Fall through (allocate space for the pointer). */
|
796
|
+
|
797
|
+
default:
|
798
|
+
soft_float_cif:
|
799
|
+
/* Everything else is passed as a 4-byte word in a GPR, either
|
800
|
+
the object itself or a pointer to it. */
|
801
|
+
intarg_count++;
|
802
|
+
break;
|
803
|
+
}
|
804
|
+
}
|
805
|
+
else
|
806
|
+
for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
|
807
|
+
{
|
808
|
+
switch ((*ptr)->type)
|
809
|
+
{
|
810
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
811
|
+
case FFI_TYPE_LONGDOUBLE:
|
812
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
813
|
+
intarg_count += 4;
|
814
|
+
else
|
815
|
+
{
|
816
|
+
fparg_count += 2;
|
817
|
+
intarg_count += 2;
|
818
|
+
}
|
819
|
+
break;
|
820
|
+
#endif
|
821
|
+
case FFI_TYPE_FLOAT:
|
822
|
+
case FFI_TYPE_DOUBLE:
|
823
|
+
fparg_count++;
|
824
|
+
intarg_count++;
|
825
|
+
break;
|
826
|
+
|
827
|
+
case FFI_TYPE_STRUCT:
|
828
|
+
intarg_count += ((*ptr)->size + 7) / 8;
|
829
|
+
break;
|
830
|
+
|
831
|
+
default:
|
832
|
+
/* Everything else is passed as a 8-byte word in a GPR, either
|
833
|
+
the object itself or a pointer to it. */
|
834
|
+
intarg_count++;
|
835
|
+
break;
|
836
|
+
}
|
837
|
+
}
|
838
|
+
|
839
|
+
if (fparg_count != 0)
|
840
|
+
flags |= FLAG_FP_ARGUMENTS;
|
841
|
+
if (intarg_count > 4)
|
842
|
+
flags |= FLAG_4_GPR_ARGUMENTS;
|
843
|
+
if (struct_copy_size != 0)
|
844
|
+
flags |= FLAG_ARG_NEEDS_COPY;
|
845
|
+
|
846
|
+
if (cif->abi != FFI_LINUX64)
|
847
|
+
{
|
848
|
+
/* Space for the FPR registers, if needed. */
|
849
|
+
if (fparg_count != 0)
|
850
|
+
bytes += NUM_FPR_ARG_REGISTERS * sizeof (double);
|
851
|
+
|
852
|
+
/* Stack space. */
|
853
|
+
if (intarg_count > NUM_GPR_ARG_REGISTERS)
|
854
|
+
bytes += (intarg_count - NUM_GPR_ARG_REGISTERS) * sizeof (int);
|
855
|
+
if (fparg_count > NUM_FPR_ARG_REGISTERS)
|
856
|
+
bytes += (fparg_count - NUM_FPR_ARG_REGISTERS) * sizeof (double);
|
857
|
+
}
|
858
|
+
else
|
859
|
+
{
|
860
|
+
/* Space for the FPR registers, if needed. */
|
861
|
+
if (fparg_count != 0)
|
862
|
+
bytes += NUM_FPR_ARG_REGISTERS64 * sizeof (double);
|
863
|
+
|
864
|
+
/* Stack space. */
|
865
|
+
if (intarg_count > NUM_GPR_ARG_REGISTERS64)
|
866
|
+
bytes += (intarg_count - NUM_GPR_ARG_REGISTERS64) * sizeof (long);
|
867
|
+
}
|
868
|
+
|
869
|
+
/* The stack space allocated needs to be a multiple of 16 bytes. */
|
870
|
+
bytes = (bytes + 15) & ~0xF;
|
871
|
+
|
872
|
+
/* Add in the space for the copied structures. */
|
873
|
+
bytes += struct_copy_size;
|
874
|
+
|
875
|
+
cif->flags = flags;
|
876
|
+
cif->bytes = bytes;
|
877
|
+
|
878
|
+
return FFI_OK;
|
879
|
+
}
|
880
|
+
|
881
|
+
extern void ffi_call_SYSV(extended_cif *, unsigned, unsigned, unsigned *,
|
882
|
+
void (*fn)(void));
|
883
|
+
extern void FFI_HIDDEN ffi_call_LINUX64(extended_cif *, unsigned long,
|
884
|
+
unsigned long, unsigned long *,
|
885
|
+
void (*fn)(void));
|
886
|
+
|
887
|
+
void
|
888
|
+
ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
|
889
|
+
{
|
890
|
+
extended_cif ecif;
|
891
|
+
|
892
|
+
ecif.cif = cif;
|
893
|
+
ecif.avalue = avalue;
|
894
|
+
|
895
|
+
/* If the return value is a struct and we don't have a return */
|
896
|
+
/* value address then we need to make one */
|
897
|
+
|
898
|
+
if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT))
|
899
|
+
{
|
900
|
+
ecif.rvalue = alloca(cif->rtype->size);
|
901
|
+
}
|
902
|
+
else
|
903
|
+
ecif.rvalue = rvalue;
|
904
|
+
|
905
|
+
|
906
|
+
switch (cif->abi)
|
907
|
+
{
|
908
|
+
#ifndef POWERPC64
|
909
|
+
case FFI_SYSV:
|
910
|
+
case FFI_GCC_SYSV:
|
911
|
+
case FFI_LINUX:
|
912
|
+
case FFI_LINUX_SOFT_FLOAT:
|
913
|
+
ffi_call_SYSV (&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn);
|
914
|
+
break;
|
915
|
+
#else
|
916
|
+
case FFI_LINUX64:
|
917
|
+
ffi_call_LINUX64 (&ecif, -(long) cif->bytes, cif->flags, ecif.rvalue, fn);
|
918
|
+
break;
|
919
|
+
#endif
|
920
|
+
default:
|
921
|
+
FFI_ASSERT (0);
|
922
|
+
break;
|
923
|
+
}
|
924
|
+
}
|
925
|
+
|
926
|
+
|
927
|
+
#ifndef POWERPC64
|
928
|
+
#define MIN_CACHE_LINE_SIZE 8
|
929
|
+
|
930
|
+
static void
|
931
|
+
flush_icache (char *wraddr, char *xaddr, int size)
|
932
|
+
{
|
933
|
+
int i;
|
934
|
+
for (i = 0; i < size; i += MIN_CACHE_LINE_SIZE)
|
935
|
+
__asm__ volatile ("icbi 0,%0;" "dcbf 0,%1;"
|
936
|
+
: : "r" (xaddr + i), "r" (wraddr + i) : "memory");
|
937
|
+
__asm__ volatile ("icbi 0,%0;" "dcbf 0,%1;" "sync;" "isync;"
|
938
|
+
: : "r"(xaddr + size - 1), "r"(wraddr + size - 1)
|
939
|
+
: "memory");
|
940
|
+
}
|
941
|
+
#endif
|
942
|
+
|
943
|
+
ffi_status
|
944
|
+
ffi_prep_closure_loc (ffi_closure *closure,
|
945
|
+
ffi_cif *cif,
|
946
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
947
|
+
void *user_data,
|
948
|
+
void *codeloc)
|
949
|
+
{
|
950
|
+
#ifdef POWERPC64
|
951
|
+
void **tramp = (void **) &closure->tramp[0];
|
952
|
+
|
953
|
+
if (cif->abi != FFI_LINUX64)
|
954
|
+
return FFI_BAD_ABI;
|
955
|
+
/* Copy function address and TOC from ffi_closure_LINUX64. */
|
956
|
+
memcpy (tramp, (char *) ffi_closure_LINUX64, 16);
|
957
|
+
tramp[2] = codeloc;
|
958
|
+
#else
|
959
|
+
unsigned int *tramp;
|
960
|
+
|
961
|
+
if (! (cif->abi == FFI_GCC_SYSV
|
962
|
+
|| cif->abi == FFI_SYSV
|
963
|
+
|| cif->abi == FFI_LINUX
|
964
|
+
|| cif->abi == FFI_LINUX_SOFT_FLOAT))
|
965
|
+
return FFI_BAD_ABI;
|
966
|
+
|
967
|
+
tramp = (unsigned int *) &closure->tramp[0];
|
968
|
+
tramp[0] = 0x7c0802a6; /* mflr r0 */
|
969
|
+
tramp[1] = 0x4800000d; /* bl 10 <trampoline_initial+0x10> */
|
970
|
+
tramp[4] = 0x7d6802a6; /* mflr r11 */
|
971
|
+
tramp[5] = 0x7c0803a6; /* mtlr r0 */
|
972
|
+
tramp[6] = 0x800b0000; /* lwz r0,0(r11) */
|
973
|
+
tramp[7] = 0x816b0004; /* lwz r11,4(r11) */
|
974
|
+
tramp[8] = 0x7c0903a6; /* mtctr r0 */
|
975
|
+
tramp[9] = 0x4e800420; /* bctr */
|
976
|
+
*(void **) &tramp[2] = (void *) ffi_closure_SYSV; /* function */
|
977
|
+
*(void **) &tramp[3] = codeloc; /* context */
|
978
|
+
|
979
|
+
/* Flush the icache. */
|
980
|
+
flush_icache ((char *)tramp, (char *)codeloc, FFI_TRAMPOLINE_SIZE);
|
981
|
+
#endif
|
982
|
+
|
983
|
+
closure->cif = cif;
|
984
|
+
closure->fun = fun;
|
985
|
+
closure->user_data = user_data;
|
986
|
+
|
987
|
+
return FFI_OK;
|
988
|
+
}
|
989
|
+
|
990
|
+
typedef union
|
991
|
+
{
|
992
|
+
float f;
|
993
|
+
double d;
|
994
|
+
} ffi_dblfl;
|
995
|
+
|
996
|
+
int ffi_closure_helper_SYSV (ffi_closure *, void *, unsigned long *,
|
997
|
+
ffi_dblfl *, unsigned long *);
|
998
|
+
|
999
|
+
/* Basically the trampoline invokes ffi_closure_SYSV, and on
|
1000
|
+
* entry, r11 holds the address of the closure.
|
1001
|
+
* After storing the registers that could possibly contain
|
1002
|
+
* parameters to be passed into the stack frame and setting
|
1003
|
+
* up space for a return value, ffi_closure_SYSV invokes the
|
1004
|
+
* following helper function to do most of the work
|
1005
|
+
*/
|
1006
|
+
|
1007
|
+
int
|
1008
|
+
ffi_closure_helper_SYSV (ffi_closure *closure, void *rvalue,
|
1009
|
+
unsigned long *pgr, ffi_dblfl *pfr,
|
1010
|
+
unsigned long *pst)
|
1011
|
+
{
|
1012
|
+
/* rvalue is the pointer to space for return value in closure assembly */
|
1013
|
+
/* pgr is the pointer to where r3-r10 are stored in ffi_closure_SYSV */
|
1014
|
+
/* pfr is the pointer to where f1-f8 are stored in ffi_closure_SYSV */
|
1015
|
+
/* pst is the pointer to outgoing parameter stack in original caller */
|
1016
|
+
|
1017
|
+
void ** avalue;
|
1018
|
+
ffi_type ** arg_types;
|
1019
|
+
long i, avn;
|
1020
|
+
long nf; /* number of floating registers already used */
|
1021
|
+
long ng; /* number of general registers already used */
|
1022
|
+
ffi_cif * cif;
|
1023
|
+
double temp;
|
1024
|
+
unsigned size;
|
1025
|
+
|
1026
|
+
cif = closure->cif;
|
1027
|
+
avalue = alloca (cif->nargs * sizeof (void *));
|
1028
|
+
size = cif->rtype->size;
|
1029
|
+
|
1030
|
+
nf = 0;
|
1031
|
+
ng = 0;
|
1032
|
+
|
1033
|
+
/* Copy the caller's structure return value address so that the closure
|
1034
|
+
returns the data directly to the caller.
|
1035
|
+
For FFI_SYSV the result is passed in r3/r4 if the struct size is less
|
1036
|
+
or equal 8 bytes. */
|
1037
|
+
|
1038
|
+
if ((cif->rtype->type == FFI_TYPE_STRUCT
|
1039
|
+
&& !((cif->abi == FFI_SYSV) && (size <= 8)))
|
1040
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1041
|
+
|| (cif->rtype->type == FFI_TYPE_LONGDOUBLE
|
1042
|
+
&& cif->abi != FFI_LINUX && cif->abi != FFI_LINUX_SOFT_FLOAT)
|
1043
|
+
#endif
|
1044
|
+
)
|
1045
|
+
{
|
1046
|
+
rvalue = (void *) *pgr;
|
1047
|
+
ng++;
|
1048
|
+
pgr++;
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
i = 0;
|
1052
|
+
avn = cif->nargs;
|
1053
|
+
arg_types = cif->arg_types;
|
1054
|
+
|
1055
|
+
/* Grab the addresses of the arguments from the stack frame. */
|
1056
|
+
while (i < avn)
|
1057
|
+
{
|
1058
|
+
switch (arg_types[i]->type)
|
1059
|
+
{
|
1060
|
+
case FFI_TYPE_SINT8:
|
1061
|
+
case FFI_TYPE_UINT8:
|
1062
|
+
/* there are 8 gpr registers used to pass values */
|
1063
|
+
if (ng < 8)
|
1064
|
+
{
|
1065
|
+
avalue[i] = (char *) pgr + 3;
|
1066
|
+
ng++;
|
1067
|
+
pgr++;
|
1068
|
+
}
|
1069
|
+
else
|
1070
|
+
{
|
1071
|
+
avalue[i] = (char *) pst + 3;
|
1072
|
+
pst++;
|
1073
|
+
}
|
1074
|
+
break;
|
1075
|
+
|
1076
|
+
case FFI_TYPE_SINT16:
|
1077
|
+
case FFI_TYPE_UINT16:
|
1078
|
+
/* there are 8 gpr registers used to pass values */
|
1079
|
+
if (ng < 8)
|
1080
|
+
{
|
1081
|
+
avalue[i] = (char *) pgr + 2;
|
1082
|
+
ng++;
|
1083
|
+
pgr++;
|
1084
|
+
}
|
1085
|
+
else
|
1086
|
+
{
|
1087
|
+
avalue[i] = (char *) pst + 2;
|
1088
|
+
pst++;
|
1089
|
+
}
|
1090
|
+
break;
|
1091
|
+
|
1092
|
+
case FFI_TYPE_SINT32:
|
1093
|
+
case FFI_TYPE_UINT32:
|
1094
|
+
case FFI_TYPE_POINTER:
|
1095
|
+
soft_float_closure:
|
1096
|
+
/* there are 8 gpr registers used to pass values */
|
1097
|
+
if (ng < 8)
|
1098
|
+
{
|
1099
|
+
avalue[i] = pgr;
|
1100
|
+
ng++;
|
1101
|
+
pgr++;
|
1102
|
+
}
|
1103
|
+
else
|
1104
|
+
{
|
1105
|
+
avalue[i] = pst;
|
1106
|
+
pst++;
|
1107
|
+
}
|
1108
|
+
break;
|
1109
|
+
|
1110
|
+
case FFI_TYPE_STRUCT:
|
1111
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1112
|
+
do_struct:
|
1113
|
+
#endif
|
1114
|
+
/* Structs are passed by reference. The address will appear in a
|
1115
|
+
gpr if it is one of the first 8 arguments. */
|
1116
|
+
if (ng < 8)
|
1117
|
+
{
|
1118
|
+
avalue[i] = (void *) *pgr;
|
1119
|
+
ng++;
|
1120
|
+
pgr++;
|
1121
|
+
}
|
1122
|
+
else
|
1123
|
+
{
|
1124
|
+
avalue[i] = (void *) *pst;
|
1125
|
+
pst++;
|
1126
|
+
}
|
1127
|
+
break;
|
1128
|
+
|
1129
|
+
case FFI_TYPE_SINT64:
|
1130
|
+
case FFI_TYPE_UINT64:
|
1131
|
+
soft_double_closure:
|
1132
|
+
/* passing long long ints are complex, they must
|
1133
|
+
* be passed in suitable register pairs such as
|
1134
|
+
* (r3,r4) or (r5,r6) or (r6,r7), or (r7,r8) or (r9,r10)
|
1135
|
+
* and if the entire pair aren't available then the outgoing
|
1136
|
+
* parameter stack is used for both but an alignment of 8
|
1137
|
+
* must will be kept. So we must either look in pgr
|
1138
|
+
* or pst to find the correct address for this type
|
1139
|
+
* of parameter.
|
1140
|
+
*/
|
1141
|
+
if (ng < 7)
|
1142
|
+
{
|
1143
|
+
if (ng & 0x01)
|
1144
|
+
{
|
1145
|
+
/* skip r4, r6, r8 as starting points */
|
1146
|
+
ng++;
|
1147
|
+
pgr++;
|
1148
|
+
}
|
1149
|
+
avalue[i] = pgr;
|
1150
|
+
ng += 2;
|
1151
|
+
pgr += 2;
|
1152
|
+
}
|
1153
|
+
else
|
1154
|
+
{
|
1155
|
+
if (((long) pst) & 4)
|
1156
|
+
pst++;
|
1157
|
+
avalue[i] = pst;
|
1158
|
+
pst += 2;
|
1159
|
+
ng = 8;
|
1160
|
+
}
|
1161
|
+
break;
|
1162
|
+
|
1163
|
+
case FFI_TYPE_FLOAT:
|
1164
|
+
/* With FFI_LINUX_SOFT_FLOAT floats are handled like UINT32. */
|
1165
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
1166
|
+
goto soft_float_closure;
|
1167
|
+
/* unfortunately float values are stored as doubles
|
1168
|
+
* in the ffi_closure_SYSV code (since we don't check
|
1169
|
+
* the type in that routine).
|
1170
|
+
*/
|
1171
|
+
|
1172
|
+
/* there are 8 64bit floating point registers */
|
1173
|
+
|
1174
|
+
if (nf < 8)
|
1175
|
+
{
|
1176
|
+
temp = pfr->d;
|
1177
|
+
pfr->f = (float) temp;
|
1178
|
+
avalue[i] = pfr;
|
1179
|
+
nf++;
|
1180
|
+
pfr++;
|
1181
|
+
}
|
1182
|
+
else
|
1183
|
+
{
|
1184
|
+
/* FIXME? here we are really changing the values
|
1185
|
+
* stored in the original calling routines outgoing
|
1186
|
+
* parameter stack. This is probably a really
|
1187
|
+
* naughty thing to do but...
|
1188
|
+
*/
|
1189
|
+
avalue[i] = pst;
|
1190
|
+
pst += 1;
|
1191
|
+
}
|
1192
|
+
break;
|
1193
|
+
|
1194
|
+
case FFI_TYPE_DOUBLE:
|
1195
|
+
/* With FFI_LINUX_SOFT_FLOAT doubles are handled like UINT64. */
|
1196
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
1197
|
+
goto soft_double_closure;
|
1198
|
+
/* On the outgoing stack all values are aligned to 8 */
|
1199
|
+
/* there are 8 64bit floating point registers */
|
1200
|
+
|
1201
|
+
if (nf < 8)
|
1202
|
+
{
|
1203
|
+
avalue[i] = pfr;
|
1204
|
+
nf++;
|
1205
|
+
pfr++;
|
1206
|
+
}
|
1207
|
+
else
|
1208
|
+
{
|
1209
|
+
if (((long) pst) & 4)
|
1210
|
+
pst++;
|
1211
|
+
avalue[i] = pst;
|
1212
|
+
pst += 2;
|
1213
|
+
}
|
1214
|
+
break;
|
1215
|
+
|
1216
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1217
|
+
case FFI_TYPE_LONGDOUBLE:
|
1218
|
+
if (cif->abi != FFI_LINUX && cif->abi != FFI_LINUX_SOFT_FLOAT)
|
1219
|
+
goto do_struct;
|
1220
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
1221
|
+
{ /* Test if for the whole long double, 4 gprs are available.
|
1222
|
+
otherwise the stuff ends up on the stack. */
|
1223
|
+
if (ng < 5)
|
1224
|
+
{
|
1225
|
+
avalue[i] = pgr;
|
1226
|
+
pgr += 4;
|
1227
|
+
ng += 4;
|
1228
|
+
}
|
1229
|
+
else
|
1230
|
+
{
|
1231
|
+
avalue[i] = pst;
|
1232
|
+
pst += 4;
|
1233
|
+
ng = 8;
|
1234
|
+
}
|
1235
|
+
break;
|
1236
|
+
}
|
1237
|
+
if (nf < 7)
|
1238
|
+
{
|
1239
|
+
avalue[i] = pfr;
|
1240
|
+
pfr += 2;
|
1241
|
+
nf += 2;
|
1242
|
+
}
|
1243
|
+
else
|
1244
|
+
{
|
1245
|
+
if (((long) pst) & 4)
|
1246
|
+
pst++;
|
1247
|
+
avalue[i] = pst;
|
1248
|
+
pst += 4;
|
1249
|
+
nf = 8;
|
1250
|
+
}
|
1251
|
+
break;
|
1252
|
+
#endif
|
1253
|
+
|
1254
|
+
default:
|
1255
|
+
FFI_ASSERT (0);
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
i++;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
|
1262
|
+
(closure->fun) (cif, rvalue, avalue, closure->user_data);
|
1263
|
+
|
1264
|
+
/* Tell ffi_closure_SYSV how to perform return type promotions.
|
1265
|
+
Because the FFI_SYSV ABI returns the structures <= 8 bytes in r3/r4
|
1266
|
+
we have to tell ffi_closure_SYSV how to treat them. We combine the base
|
1267
|
+
type FFI_SYSV_TYPE_SMALL_STRUCT - 1 with the size of the struct.
|
1268
|
+
So a one byte struct gets the return type 16. Return type 1 to 15 are
|
1269
|
+
already used and we never have a struct with size zero. That is the reason
|
1270
|
+
for the subtraction of 1. See the comment in ffitarget.h about ordering.
|
1271
|
+
*/
|
1272
|
+
if (cif->abi == FFI_SYSV && cif->rtype->type == FFI_TYPE_STRUCT
|
1273
|
+
&& size <= 8)
|
1274
|
+
return (FFI_SYSV_TYPE_SMALL_STRUCT - 1) + size;
|
1275
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1276
|
+
else if (cif->rtype->type == FFI_TYPE_LONGDOUBLE
|
1277
|
+
&& cif->abi != FFI_LINUX && cif->abi != FFI_LINUX_SOFT_FLOAT)
|
1278
|
+
return FFI_TYPE_STRUCT;
|
1279
|
+
#endif
|
1280
|
+
/* With FFI_LINUX_SOFT_FLOAT floats and doubles are handled like UINT32
|
1281
|
+
respectivley UINT64. */
|
1282
|
+
if (cif->abi == FFI_LINUX_SOFT_FLOAT)
|
1283
|
+
{
|
1284
|
+
switch (cif->rtype->type)
|
1285
|
+
{
|
1286
|
+
case FFI_TYPE_FLOAT:
|
1287
|
+
return FFI_TYPE_UINT32;
|
1288
|
+
break;
|
1289
|
+
case FFI_TYPE_DOUBLE:
|
1290
|
+
return FFI_TYPE_UINT64;
|
1291
|
+
break;
|
1292
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1293
|
+
case FFI_TYPE_LONGDOUBLE:
|
1294
|
+
return FFI_TYPE_UINT128;
|
1295
|
+
break;
|
1296
|
+
#endif
|
1297
|
+
default:
|
1298
|
+
return cif->rtype->type;
|
1299
|
+
}
|
1300
|
+
}
|
1301
|
+
else
|
1302
|
+
{
|
1303
|
+
return cif->rtype->type;
|
1304
|
+
}
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
int FFI_HIDDEN ffi_closure_helper_LINUX64 (ffi_closure *, void *,
|
1308
|
+
unsigned long *, ffi_dblfl *);
|
1309
|
+
|
1310
|
+
int FFI_HIDDEN
|
1311
|
+
ffi_closure_helper_LINUX64 (ffi_closure *closure, void *rvalue,
|
1312
|
+
unsigned long *pst, ffi_dblfl *pfr)
|
1313
|
+
{
|
1314
|
+
/* rvalue is the pointer to space for return value in closure assembly */
|
1315
|
+
/* pst is the pointer to parameter save area
|
1316
|
+
(r3-r10 are stored into its first 8 slots by ffi_closure_LINUX64) */
|
1317
|
+
/* pfr is the pointer to where f1-f13 are stored in ffi_closure_LINUX64 */
|
1318
|
+
|
1319
|
+
void **avalue;
|
1320
|
+
ffi_type **arg_types;
|
1321
|
+
long i, avn;
|
1322
|
+
ffi_cif *cif;
|
1323
|
+
ffi_dblfl *end_pfr = pfr + NUM_FPR_ARG_REGISTERS64;
|
1324
|
+
|
1325
|
+
cif = closure->cif;
|
1326
|
+
avalue = alloca (cif->nargs * sizeof (void *));
|
1327
|
+
|
1328
|
+
/* Copy the caller's structure return value address so that the closure
|
1329
|
+
returns the data directly to the caller. */
|
1330
|
+
if (cif->rtype->type == FFI_TYPE_STRUCT)
|
1331
|
+
{
|
1332
|
+
rvalue = (void *) *pst;
|
1333
|
+
pst++;
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
i = 0;
|
1337
|
+
avn = cif->nargs;
|
1338
|
+
arg_types = cif->arg_types;
|
1339
|
+
|
1340
|
+
/* Grab the addresses of the arguments from the stack frame. */
|
1341
|
+
while (i < avn)
|
1342
|
+
{
|
1343
|
+
switch (arg_types[i]->type)
|
1344
|
+
{
|
1345
|
+
case FFI_TYPE_SINT8:
|
1346
|
+
case FFI_TYPE_UINT8:
|
1347
|
+
avalue[i] = (char *) pst + 7;
|
1348
|
+
pst++;
|
1349
|
+
break;
|
1350
|
+
|
1351
|
+
case FFI_TYPE_SINT16:
|
1352
|
+
case FFI_TYPE_UINT16:
|
1353
|
+
avalue[i] = (char *) pst + 6;
|
1354
|
+
pst++;
|
1355
|
+
break;
|
1356
|
+
|
1357
|
+
case FFI_TYPE_SINT32:
|
1358
|
+
case FFI_TYPE_UINT32:
|
1359
|
+
avalue[i] = (char *) pst + 4;
|
1360
|
+
pst++;
|
1361
|
+
break;
|
1362
|
+
|
1363
|
+
case FFI_TYPE_SINT64:
|
1364
|
+
case FFI_TYPE_UINT64:
|
1365
|
+
case FFI_TYPE_POINTER:
|
1366
|
+
avalue[i] = pst;
|
1367
|
+
pst++;
|
1368
|
+
break;
|
1369
|
+
|
1370
|
+
case FFI_TYPE_STRUCT:
|
1371
|
+
/* Structures with size less than eight bytes are passed
|
1372
|
+
left-padded. */
|
1373
|
+
if (arg_types[i]->size < 8)
|
1374
|
+
avalue[i] = (char *) pst + 8 - arg_types[i]->size;
|
1375
|
+
else
|
1376
|
+
avalue[i] = pst;
|
1377
|
+
pst += (arg_types[i]->size + 7) / 8;
|
1378
|
+
break;
|
1379
|
+
|
1380
|
+
case FFI_TYPE_FLOAT:
|
1381
|
+
/* unfortunately float values are stored as doubles
|
1382
|
+
* in the ffi_closure_LINUX64 code (since we don't check
|
1383
|
+
* the type in that routine).
|
1384
|
+
*/
|
1385
|
+
|
1386
|
+
/* there are 13 64bit floating point registers */
|
1387
|
+
|
1388
|
+
if (pfr < end_pfr)
|
1389
|
+
{
|
1390
|
+
double temp = pfr->d;
|
1391
|
+
pfr->f = (float) temp;
|
1392
|
+
avalue[i] = pfr;
|
1393
|
+
pfr++;
|
1394
|
+
}
|
1395
|
+
else
|
1396
|
+
avalue[i] = pst;
|
1397
|
+
pst++;
|
1398
|
+
break;
|
1399
|
+
|
1400
|
+
case FFI_TYPE_DOUBLE:
|
1401
|
+
/* On the outgoing stack all values are aligned to 8 */
|
1402
|
+
/* there are 13 64bit floating point registers */
|
1403
|
+
|
1404
|
+
if (pfr < end_pfr)
|
1405
|
+
{
|
1406
|
+
avalue[i] = pfr;
|
1407
|
+
pfr++;
|
1408
|
+
}
|
1409
|
+
else
|
1410
|
+
avalue[i] = pst;
|
1411
|
+
pst++;
|
1412
|
+
break;
|
1413
|
+
|
1414
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
1415
|
+
case FFI_TYPE_LONGDOUBLE:
|
1416
|
+
if (pfr + 1 < end_pfr)
|
1417
|
+
{
|
1418
|
+
avalue[i] = pfr;
|
1419
|
+
pfr += 2;
|
1420
|
+
}
|
1421
|
+
else
|
1422
|
+
{
|
1423
|
+
if (pfr < end_pfr)
|
1424
|
+
{
|
1425
|
+
/* Passed partly in f13 and partly on the stack.
|
1426
|
+
Move it all to the stack. */
|
1427
|
+
*pst = *(unsigned long *) pfr;
|
1428
|
+
pfr++;
|
1429
|
+
}
|
1430
|
+
avalue[i] = pst;
|
1431
|
+
}
|
1432
|
+
pst += 2;
|
1433
|
+
break;
|
1434
|
+
#endif
|
1435
|
+
|
1436
|
+
default:
|
1437
|
+
FFI_ASSERT (0);
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
i++;
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
|
1444
|
+
(closure->fun) (cif, rvalue, avalue, closure->user_data);
|
1445
|
+
|
1446
|
+
/* Tell ffi_closure_LINUX64 how to perform return type promotions. */
|
1447
|
+
return cif->rtype->type;
|
1448
|
+
}
|