initialise repo with jekyll
This commit is contained in:
commit
181282327b
25
404.html
Normal file
25
404.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
permalink: /404.html
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
.container {
|
||||||
|
margin: 10px auto;
|
||||||
|
max-width: 600px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin: 30px 0;
|
||||||
|
font-size: 4em;
|
||||||
|
line-height: 1;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<h1>404</h1>
|
||||||
|
|
||||||
|
<p><strong>Page not found :(</strong></p>
|
||||||
|
<p>The requested page could not be found.</p>
|
||||||
|
</div>
|
30
Gemfile
Normal file
30
Gemfile
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
source "https://rubygems.org"
|
||||||
|
# Hello! This is where you manage which Jekyll version is used to run.
|
||||||
|
# When you want to use a different version, change it below, save the
|
||||||
|
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
||||||
|
#
|
||||||
|
# bundle exec jekyll serve
|
||||||
|
#
|
||||||
|
# This will help ensure the proper Jekyll version is running.
|
||||||
|
# Happy Jekylling!
|
||||||
|
gem "jekyll", "~> 4.0.0"
|
||||||
|
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
||||||
|
gem "minima", "~> 2.5"
|
||||||
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||||
|
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
||||||
|
# gem "github-pages", group: :jekyll_plugins
|
||||||
|
# If you have any plugins, put them here!
|
||||||
|
group :jekyll_plugins do
|
||||||
|
gem "jekyll-feed", "~> 0.12"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||||
|
# and associated library.
|
||||||
|
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
|
||||||
|
gem "tzinfo", "~> 1.2"
|
||||||
|
gem "tzinfo-data"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Performance-booster for watching directories on Windows
|
||||||
|
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
|
||||||
|
|
84
Gemfile.lock
Normal file
84
Gemfile.lock
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
addressable (2.7.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
colorator (1.1.0)
|
||||||
|
concurrent-ruby (1.1.5)
|
||||||
|
em-websocket (0.5.1)
|
||||||
|
eventmachine (>= 0.12.9)
|
||||||
|
http_parser.rb (~> 0.6.0)
|
||||||
|
eventmachine (1.2.7)
|
||||||
|
ffi (1.11.1)
|
||||||
|
forwardable-extended (2.6.0)
|
||||||
|
http_parser.rb (0.6.0)
|
||||||
|
i18n (1.7.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
jekyll (4.0.0)
|
||||||
|
addressable (~> 2.4)
|
||||||
|
colorator (~> 1.0)
|
||||||
|
em-websocket (~> 0.5)
|
||||||
|
i18n (>= 0.9.5, < 2)
|
||||||
|
jekyll-sass-converter (~> 2.0)
|
||||||
|
jekyll-watch (~> 2.0)
|
||||||
|
kramdown (~> 2.1)
|
||||||
|
kramdown-parser-gfm (~> 1.0)
|
||||||
|
liquid (~> 4.0)
|
||||||
|
mercenary (~> 0.3.3)
|
||||||
|
pathutil (~> 0.9)
|
||||||
|
rouge (~> 3.0)
|
||||||
|
safe_yaml (~> 1.0)
|
||||||
|
terminal-table (~> 1.8)
|
||||||
|
jekyll-feed (0.12.1)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-sass-converter (2.0.1)
|
||||||
|
sassc (> 2.0.1, < 3.0)
|
||||||
|
jekyll-seo-tag (2.6.1)
|
||||||
|
jekyll (>= 3.3, < 5.0)
|
||||||
|
jekyll-watch (2.2.1)
|
||||||
|
listen (~> 3.0)
|
||||||
|
kramdown (2.1.0)
|
||||||
|
kramdown-parser-gfm (1.1.0)
|
||||||
|
kramdown (~> 2.0)
|
||||||
|
liquid (4.0.3)
|
||||||
|
listen (3.2.0)
|
||||||
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
|
mercenary (0.3.6)
|
||||||
|
minima (2.5.1)
|
||||||
|
jekyll (>= 3.5, < 5.0)
|
||||||
|
jekyll-feed (~> 0.9)
|
||||||
|
jekyll-seo-tag (~> 2.1)
|
||||||
|
pathutil (0.16.2)
|
||||||
|
forwardable-extended (~> 2.6)
|
||||||
|
public_suffix (4.0.1)
|
||||||
|
rb-fsevent (0.10.3)
|
||||||
|
rb-inotify (0.10.0)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
rouge (3.12.0)
|
||||||
|
safe_yaml (1.0.5)
|
||||||
|
sassc (2.2.1)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
terminal-table (1.8.0)
|
||||||
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||||
|
thread_safe (0.3.6)
|
||||||
|
tzinfo (1.2.5)
|
||||||
|
thread_safe (~> 0.1)
|
||||||
|
tzinfo-data (1.2019.3)
|
||||||
|
tzinfo (>= 1.0.0)
|
||||||
|
unicode-display_width (1.6.0)
|
||||||
|
wdm (0.1.1)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
jekyll (~> 4.0.0)
|
||||||
|
jekyll-feed (~> 0.12)
|
||||||
|
minima (~> 2.5)
|
||||||
|
tzinfo (~> 1.2)
|
||||||
|
tzinfo-data
|
||||||
|
wdm (~> 0.1.1)
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.0.2
|
55
_config.yml
Normal file
55
_config.yml
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
# Welcome to Jekyll!
|
||||||
|
#
|
||||||
|
# This config file is meant for settings that affect your whole blog, values
|
||||||
|
# which you are expected to set up once and rarely edit after that. If you find
|
||||||
|
# yourself editing this file very often, consider using Jekyll's data files
|
||||||
|
# feature for the data you need to update frequently.
|
||||||
|
#
|
||||||
|
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
||||||
|
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
||||||
|
#
|
||||||
|
# If you need help with YAML syntax, here are some quick references for you:
|
||||||
|
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
||||||
|
# https://learnxinyminutes.com/docs/yaml/
|
||||||
|
#
|
||||||
|
# Site settings
|
||||||
|
# These are used to personalize your new site. If you look in the HTML files,
|
||||||
|
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
||||||
|
# You can create any custom variable you would like, and they will be accessible
|
||||||
|
# in the templates via {{ site.myvariable }}.
|
||||||
|
|
||||||
|
title: Your awesome title
|
||||||
|
email: your-email@example.com
|
||||||
|
description: >- # this means to ignore newlines until "baseurl:"
|
||||||
|
Write an awesome description for your new site here. You can edit this
|
||||||
|
line in _config.yml. It will appear in your document head meta (for
|
||||||
|
Google search results) and in your feed.xml site description.
|
||||||
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
|
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
|
twitter_username: jekyllrb
|
||||||
|
github_username: jekyll
|
||||||
|
|
||||||
|
# Build settings
|
||||||
|
theme: minima
|
||||||
|
plugins:
|
||||||
|
- jekyll-feed
|
||||||
|
|
||||||
|
# Exclude from processing.
|
||||||
|
# The following items will not be processed, by default.
|
||||||
|
# Any item listed under the `exclude:` key here will be automatically added to
|
||||||
|
# the internal "default list".
|
||||||
|
#
|
||||||
|
# Excluded items can be processed by explicitly listing the directories or
|
||||||
|
# their entries' file path in the `include:` list.
|
||||||
|
#
|
||||||
|
# exclude:
|
||||||
|
# - .sass-cache/
|
||||||
|
# - .jekyll-cache/
|
||||||
|
# - gemfiles/
|
||||||
|
# - Gemfile
|
||||||
|
# - Gemfile.lock
|
||||||
|
# - node_modules/
|
||||||
|
# - vendor/bundle/
|
||||||
|
# - vendor/cache/
|
||||||
|
# - vendor/gems/
|
||||||
|
# - vendor/ruby/
|
0
_includes/common/head.html
Normal file
0
_includes/common/head.html
Normal file
0
_layouts/default.html
Normal file
0
_layouts/default.html
Normal file
29
_posts/2019-10-20-welcome-to-jekyll.markdown
Normal file
29
_posts/2019-10-20-welcome-to-jekyll.markdown
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "Welcome to Jekyll!"
|
||||||
|
date: 2019-10-20 11:59:04 +0200
|
||||||
|
categories: jekyll update
|
||||||
|
---
|
||||||
|
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
|
||||||
|
|
||||||
|
Jekyll requires blog post files to be named according to the following format:
|
||||||
|
|
||||||
|
`YEAR-MONTH-DAY-title.MARKUP`
|
||||||
|
|
||||||
|
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
|
||||||
|
|
||||||
|
Jekyll also offers powerful support for code snippets:
|
||||||
|
|
||||||
|
{% highlight ruby %}
|
||||||
|
def print_hi(name)
|
||||||
|
puts "Hi, #{name}"
|
||||||
|
end
|
||||||
|
print_hi('Tom')
|
||||||
|
#=> prints 'Hi, Tom' to STDOUT.
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
|
||||||
|
|
||||||
|
[jekyll-docs]: https://jekyllrb.com/docs/home
|
||||||
|
[jekyll-gh]: https://github.com/jekyll/jekyll
|
||||||
|
[jekyll-talk]: https://talk.jekyllrb.com/
|
3
_sass/temp.scss
Normal file
3
_sass/temp.scss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
body, .reyyyryr {
|
||||||
|
background-color: red;
|
||||||
|
}
|
0
_site/404.html
Normal file
0
_site/404.html
Normal file
0
_site/about/index.html
Normal file
0
_site/about/index.html
Normal file
5
_site/assets/css/index.css
Normal file
5
_site/assets/css/index.css
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
body, .reyyyryr { background-color: red; }
|
||||||
|
|
||||||
|
body, .testing { display: none; }
|
||||||
|
|
||||||
|
/*# sourceMappingURL=index.css.map */
|
14
_site/assets/css/index.css.map
Normal file
14
_site/assets/css/index.css.map
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"file": "index.css",
|
||||||
|
"sources": [
|
||||||
|
"index.scss",
|
||||||
|
"../rf-web/_sass/temp.scss"
|
||||||
|
],
|
||||||
|
"sourcesContent": [
|
||||||
|
"@import \"temp\";\n\nbody, .testing {\n display: none;\n}",
|
||||||
|
"body, .reyyyryr {\n background-color: red;\n}\n"
|
||||||
|
],
|
||||||
|
"names": [],
|
||||||
|
"mappings": "ACAA,AAAA,IAAI,EAAE,SAAS,CAAC,EACd,gBAAgB,EAAE,GAAG,GACtB;;ADAD,AAAA,IAAI,EAAE,QAAQ,CAAC,EACb,OAAO,EAAE,IAAI,GACd"
|
||||||
|
}
|
285
_site/assets/main.css
Normal file
285
_site/assets/main.css
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
/** Reset some basic elements */
|
||||||
|
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure { margin: 0; padding: 0; }
|
||||||
|
|
||||||
|
/** Basic styling */
|
||||||
|
body { font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: normal; display: flex; min-height: 100vh; flex-direction: column; }
|
||||||
|
|
||||||
|
/** Set `margin-bottom` to maintain vertical rhythm */
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure, .highlight { margin-bottom: 15px; }
|
||||||
|
|
||||||
|
/** `main` element */
|
||||||
|
main { display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */ }
|
||||||
|
|
||||||
|
/** Images */
|
||||||
|
img { max-width: 100%; vertical-align: middle; }
|
||||||
|
|
||||||
|
/** Figures */
|
||||||
|
figure > img { display: block; }
|
||||||
|
|
||||||
|
figcaption { font-size: 14px; }
|
||||||
|
|
||||||
|
/** Lists */
|
||||||
|
ul, ol { margin-left: 30px; }
|
||||||
|
|
||||||
|
li > ul, li > ol { margin-bottom: 0; }
|
||||||
|
|
||||||
|
/** Headings */
|
||||||
|
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
|
||||||
|
|
||||||
|
/** Links */
|
||||||
|
a { color: #2a7ae2; text-decoration: none; }
|
||||||
|
|
||||||
|
a:visited { color: #1756a9; }
|
||||||
|
|
||||||
|
a:hover { color: #111; text-decoration: underline; }
|
||||||
|
|
||||||
|
.social-media-list a:hover { text-decoration: none; }
|
||||||
|
|
||||||
|
.social-media-list a:hover .username { text-decoration: underline; }
|
||||||
|
|
||||||
|
/** Blockquotes */
|
||||||
|
blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 15px; font-size: 18px; letter-spacing: -1px; font-style: italic; }
|
||||||
|
|
||||||
|
blockquote > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
/** Code formatting */
|
||||||
|
pre, code { font-size: 15px; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #eef; }
|
||||||
|
|
||||||
|
code { padding: 1px 5px; }
|
||||||
|
|
||||||
|
pre { padding: 8px 12px; overflow-x: auto; }
|
||||||
|
|
||||||
|
pre > code { border: 0; padding-right: 0; padding-left: 0; }
|
||||||
|
|
||||||
|
/** Wrapper */
|
||||||
|
.wrapper { max-width: -webkit-calc(800px - (30px * 2)); max-width: calc(800px - (30px * 2)); margin-right: auto; margin-left: auto; padding-right: 30px; padding-left: 30px; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .wrapper { max-width: -webkit-calc(800px - (30px)); max-width: calc(800px - (30px)); padding-right: 15px; padding-left: 15px; } }
|
||||||
|
|
||||||
|
/** Clearfix */
|
||||||
|
.wrapper:after, .footer-col-wrapper:after { content: ""; display: table; clear: both; }
|
||||||
|
|
||||||
|
/** Icons */
|
||||||
|
.svg-icon { width: 16px; height: 16px; display: inline-block; fill: #828282; padding-right: 5px; vertical-align: text-top; }
|
||||||
|
|
||||||
|
.social-media-list li + li { padding-top: 5px; }
|
||||||
|
|
||||||
|
/** Tables */
|
||||||
|
table { margin-bottom: 30px; width: 100%; text-align: left; color: #3f3f3f; border-collapse: collapse; border: 1px solid #e8e8e8; }
|
||||||
|
|
||||||
|
table tr:nth-child(even) { background-color: #f7f7f7; }
|
||||||
|
|
||||||
|
table th, table td { padding: 10px 15px; }
|
||||||
|
|
||||||
|
table th { background-color: #f0f0f0; border: 1px solid #dedede; border-bottom-color: #c9c9c9; }
|
||||||
|
|
||||||
|
table td { border: 1px solid #e8e8e8; }
|
||||||
|
|
||||||
|
/** Site header */
|
||||||
|
.site-header { border-top: 5px solid #424242; border-bottom: 1px solid #e8e8e8; min-height: 55.95px; position: relative; }
|
||||||
|
|
||||||
|
.site-title { font-size: 26px; font-weight: 300; line-height: 54px; letter-spacing: -1px; margin-bottom: 0; float: left; }
|
||||||
|
|
||||||
|
.site-title, .site-title:visited { color: #424242; }
|
||||||
|
|
||||||
|
.site-nav { float: right; line-height: 54px; }
|
||||||
|
|
||||||
|
.site-nav .nav-trigger { display: none; }
|
||||||
|
|
||||||
|
.site-nav .menu-icon { display: none; }
|
||||||
|
|
||||||
|
.site-nav .page-link { color: #111; line-height: 1.5; }
|
||||||
|
|
||||||
|
.site-nav .page-link:not(:last-child) { margin-right: 20px; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 15px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; }
|
||||||
|
.site-nav label[for="nav-trigger"] { display: block; float: right; width: 36px; height: 36px; z-index: 2; cursor: pointer; }
|
||||||
|
.site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; }
|
||||||
|
.site-nav .menu-icon > svg { fill: #424242; }
|
||||||
|
.site-nav input ~ .trigger { clear: both; display: none; }
|
||||||
|
.site-nav input:checked ~ .trigger { display: block; padding-bottom: 5px; }
|
||||||
|
.site-nav .page-link { display: block; padding: 5px 10px; margin-left: 20px; }
|
||||||
|
.site-nav .page-link:not(:last-child) { margin-right: 0; } }
|
||||||
|
|
||||||
|
/** Site footer */
|
||||||
|
.site-footer { border-top: 1px solid #e8e8e8; padding: 30px 0; }
|
||||||
|
|
||||||
|
.footer-heading { font-size: 18px; margin-bottom: 15px; }
|
||||||
|
|
||||||
|
.contact-list, .social-media-list { list-style: none; margin-left: 0; }
|
||||||
|
|
||||||
|
.footer-col-wrapper { font-size: 15px; color: #828282; margin-left: -15px; }
|
||||||
|
|
||||||
|
.footer-col { float: left; margin-bottom: 15px; padding-left: 15px; }
|
||||||
|
|
||||||
|
.footer-col-1 { width: -webkit-calc(35% - (30px / 2)); width: calc(35% - (30px / 2)); }
|
||||||
|
|
||||||
|
.footer-col-2 { width: -webkit-calc(20% - (30px / 2)); width: calc(20% - (30px / 2)); }
|
||||||
|
|
||||||
|
.footer-col-3 { width: -webkit-calc(45% - (30px / 2)); width: calc(45% - (30px / 2)); }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .footer-col-1, .footer-col-2 { width: -webkit-calc(50% - (30px / 2)); width: calc(50% - (30px / 2)); }
|
||||||
|
.footer-col-3 { width: -webkit-calc(100% - (30px / 2)); width: calc(100% - (30px / 2)); } }
|
||||||
|
|
||||||
|
@media screen and (max-width: 600px) { .footer-col { float: none; width: -webkit-calc(100% - (30px / 2)); width: calc(100% - (30px / 2)); } }
|
||||||
|
|
||||||
|
/** Page content */
|
||||||
|
.page-content { padding: 30px 0; flex: 1; }
|
||||||
|
|
||||||
|
.page-heading { font-size: 32px; }
|
||||||
|
|
||||||
|
.post-list-heading { font-size: 28px; }
|
||||||
|
|
||||||
|
.post-list { margin-left: 0; list-style: none; }
|
||||||
|
|
||||||
|
.post-list > li { margin-bottom: 30px; }
|
||||||
|
|
||||||
|
.post-meta { font-size: 14px; color: #828282; }
|
||||||
|
|
||||||
|
.post-link { display: block; font-size: 24px; }
|
||||||
|
|
||||||
|
/** Posts */
|
||||||
|
.post-header { margin-bottom: 30px; }
|
||||||
|
|
||||||
|
.post-title { font-size: 42px; letter-spacing: -1px; line-height: 1; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .post-title { font-size: 36px; } }
|
||||||
|
|
||||||
|
.post-content { margin-bottom: 30px; }
|
||||||
|
|
||||||
|
.post-content h2 { font-size: 32px; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } }
|
||||||
|
|
||||||
|
.post-content h3 { font-size: 26px; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } }
|
||||||
|
|
||||||
|
.post-content h4 { font-size: 20px; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } }
|
||||||
|
|
||||||
|
/** Syntax highlighting styles */
|
||||||
|
.highlight { background: #fff; }
|
||||||
|
|
||||||
|
.highlighter-rouge .highlight { background: #eef; }
|
||||||
|
|
||||||
|
.highlight .c { color: #998; font-style: italic; }
|
||||||
|
|
||||||
|
.highlight .err { color: #a61717; background-color: #e3d2d2; }
|
||||||
|
|
||||||
|
.highlight .k { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .o { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .cm { color: #998; font-style: italic; }
|
||||||
|
|
||||||
|
.highlight .cp { color: #999; font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .c1 { color: #998; font-style: italic; }
|
||||||
|
|
||||||
|
.highlight .cs { color: #999; font-weight: bold; font-style: italic; }
|
||||||
|
|
||||||
|
.highlight .gd { color: #000; background-color: #fdd; }
|
||||||
|
|
||||||
|
.highlight .gd .x { color: #000; background-color: #faa; }
|
||||||
|
|
||||||
|
.highlight .ge { font-style: italic; }
|
||||||
|
|
||||||
|
.highlight .gr { color: #a00; }
|
||||||
|
|
||||||
|
.highlight .gh { color: #999; }
|
||||||
|
|
||||||
|
.highlight .gi { color: #000; background-color: #dfd; }
|
||||||
|
|
||||||
|
.highlight .gi .x { color: #000; background-color: #afa; }
|
||||||
|
|
||||||
|
.highlight .go { color: #888; }
|
||||||
|
|
||||||
|
.highlight .gp { color: #555; }
|
||||||
|
|
||||||
|
.highlight .gs { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .gu { color: #aaa; }
|
||||||
|
|
||||||
|
.highlight .gt { color: #a00; }
|
||||||
|
|
||||||
|
.highlight .kc { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .kd { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .kp { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .kr { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .kt { color: #458; font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .m { color: #099; }
|
||||||
|
|
||||||
|
.highlight .s { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .na { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .nb { color: #0086B3; }
|
||||||
|
|
||||||
|
.highlight .nc { color: #458; font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .no { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .ni { color: #800080; }
|
||||||
|
|
||||||
|
.highlight .ne { color: #900; font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .nf { color: #900; font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .nn { color: #555; }
|
||||||
|
|
||||||
|
.highlight .nt { color: #000080; }
|
||||||
|
|
||||||
|
.highlight .nv { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .ow { font-weight: bold; }
|
||||||
|
|
||||||
|
.highlight .w { color: #bbb; }
|
||||||
|
|
||||||
|
.highlight .mf { color: #099; }
|
||||||
|
|
||||||
|
.highlight .mh { color: #099; }
|
||||||
|
|
||||||
|
.highlight .mi { color: #099; }
|
||||||
|
|
||||||
|
.highlight .mo { color: #099; }
|
||||||
|
|
||||||
|
.highlight .sb { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .sc { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .sd { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .s2 { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .se { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .sh { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .si { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .sx { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .sr { color: #009926; }
|
||||||
|
|
||||||
|
.highlight .s1 { color: #d14; }
|
||||||
|
|
||||||
|
.highlight .ss { color: #990073; }
|
||||||
|
|
||||||
|
.highlight .bp { color: #999; }
|
||||||
|
|
||||||
|
.highlight .vc { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .vg { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .vi { color: #008080; }
|
||||||
|
|
||||||
|
.highlight .il { color: #099; }
|
||||||
|
|
||||||
|
/*# sourceMappingURL=main.css.map */
|
20
_site/assets/main.css.map
Normal file
20
_site/assets/main.css.map
Normal file
File diff suppressed because one or more lines are too long
33
_site/assets/minima-social-icons.svg
Normal file
33
_site/assets/minima-social-icons.svg
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
|
||||||
|
<symbol id="dribbble" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 16c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm6.747-6.905c-.234-.074-2.115-.635-4.257-.292.894 2.456 1.258 4.456 1.328 4.872 1.533-1.037 2.624-2.68 2.93-4.58zM10.67 14.3c-.102-.6-.5-2.688-1.46-5.18l-.044.014C5.312 10.477 3.93 13.15 3.806 13.4c1.158.905 2.614 1.444 4.194 1.444.947 0 1.85-.194 2.67-.543zm-7.747-1.72c.155-.266 2.03-3.37 5.555-4.51.09-.03.18-.056.27-.08-.173-.39-.36-.778-.555-1.16-3.413 1.02-6.723.977-7.023.97l-.003.208c0 1.755.665 3.358 1.756 4.57zM1.31 6.61c.307.005 3.122.017 6.318-.832-1.132-2.012-2.353-3.705-2.533-3.952-1.912.902-3.34 2.664-3.784 4.785zM6.4 1.368c.188.253 1.43 1.943 2.548 4 2.43-.91 3.46-2.293 3.582-2.468C11.323 1.827 9.736 1.176 8 1.176c-.55 0-1.087.066-1.6.19zm6.89 2.322c-.145.194-1.29 1.662-3.816 2.694.16.325.31.656.453.99.05.117.1.235.147.352 2.274-.286 4.533.172 4.758.22-.015-1.613-.59-3.094-1.543-4.257z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="facebook" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M15.117 0H.883C.395 0 0 .395 0 .883v14.234c0 .488.395.883.883.883h7.663V9.804H6.46V7.39h2.086V5.607c0-2.066 1.262-3.19 3.106-3.19.883 0 1.642.064 1.863.094v2.16h-1.28c-1 0-1.195.48-1.195 1.18v1.54h2.39l-.31 2.42h-2.08V16h4.077c.488 0 .883-.395.883-.883V.883C16 .395 15.605 0 15.117 0" fill-rule="nonzero"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="flickr" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 8c0 2.05 1.662 3.71 3.71 3.71 2.05 0 3.713-1.66 3.713-3.71S5.76 4.29 3.71 4.29C1.663 4.29 0 5.95 0 8zm8.577 0c0 2.05 1.662 3.71 3.712 3.71C14.33 11.71 16 10.05 16 8s-1.662-3.71-3.71-3.71c-2.05 0-3.713 1.66-3.713 3.71z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="github" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.09-.202-.36-1.015.07-2.117 0 0 .67-.215 2.2.82.64-.178 1.32-.266 2-.27.68.004 1.36.092 2 .27 1.52-1.035 2.19-.82 2.19-.82.43 1.102.16 1.915.08 2.117.51.56.82 1.274.82 2.147 0 3.073-1.87 3.75-3.65 3.947.28.24.54.73.54 1.48 0 1.07-.01 1.93-.01 2.19 0 .21.14.46.55.38C13.71 14.53 16 11.53 16 8c0-4.418-3.582-8-8-8"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="googleplus" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M5.09 7.273v1.745h2.89c-.116.75-.873 2.197-2.887 2.197-1.737 0-3.155-1.44-3.155-3.215S3.353 4.785 5.09 4.785c.99 0 1.652.422 2.03.786l1.382-1.33c-.887-.83-2.037-1.33-3.41-1.33C2.275 2.91 0 5.19 0 8s2.276 5.09 5.09 5.09c2.94 0 4.888-2.065 4.888-4.974 0-.334-.036-.59-.08-.843H5.09zm10.91 0h-1.455V5.818H13.09v1.455h-1.454v1.454h1.455v1.455h1.46V8.727H16"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="instagram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C5.827 0 5.555.01 4.702.048 3.85.088 3.27.222 2.76.42c-.526.204-.973.478-1.417.923-.445.444-.72.89-.923 1.417-.198.51-.333 1.09-.372 1.942C.008 5.555 0 5.827 0 8s.01 2.445.048 3.298c.04.852.174 1.433.372 1.942.204.526.478.973.923 1.417.444.445.89.72 1.417.923.51.198 1.09.333 1.942.372.853.04 1.125.048 3.298.048s2.445-.01 3.298-.048c.852-.04 1.433-.174 1.942-.372.526-.204.973-.478 1.417-.923.445-.444.72-.89.923-1.417.198-.51.333-1.09.372-1.942.04-.853.048-1.125.048-3.298s-.01-2.445-.048-3.298c-.04-.852-.174-1.433-.372-1.942-.204-.526-.478-.973-.923-1.417-.444-.445-.89-.72-1.417-.923-.51-.198-1.09-.333-1.942-.372C10.445.008 10.173 0 8 0zm0 1.44c2.136 0 2.39.01 3.233.048.78.036 1.203.166 1.485.276.374.145.64.318.92.598.28.28.453.546.598.92.11.282.24.705.276 1.485.038.844.047 1.097.047 3.233s-.01 2.39-.05 3.233c-.04.78-.17 1.203-.28 1.485-.15.374-.32.64-.6.92-.28.28-.55.453-.92.598-.28.11-.71.24-1.49.276-.85.038-1.1.047-3.24.047s-2.39-.01-3.24-.05c-.78-.04-1.21-.17-1.49-.28-.38-.15-.64-.32-.92-.6-.28-.28-.46-.55-.6-.92-.11-.28-.24-.71-.28-1.49-.03-.84-.04-1.1-.04-3.23s.01-2.39.04-3.24c.04-.78.17-1.21.28-1.49.14-.38.32-.64.6-.92.28-.28.54-.46.92-.6.28-.11.7-.24 1.48-.28.85-.03 1.1-.04 3.24-.04zm0 2.452c-2.27 0-4.108 1.84-4.108 4.108 0 2.27 1.84 4.108 4.108 4.108 2.27 0 4.108-1.84 4.108-4.108 0-2.27-1.84-4.108-4.108-4.108zm0 6.775c-1.473 0-2.667-1.194-2.667-2.667 0-1.473 1.194-2.667 2.667-2.667 1.473 0 2.667 1.194 2.667 2.667 0 1.473-1.194 2.667-2.667 2.667zm5.23-6.937c0 .53-.43.96-.96.96s-.96-.43-.96-.96.43-.96.96-.96.96.43.96.96z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="linkedin" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M13.632 13.635h-2.37V9.922c0-.886-.018-2.025-1.234-2.025-1.235 0-1.424.964-1.424 1.96v3.778h-2.37V6H8.51v1.04h.03c.318-.6 1.092-1.233 2.247-1.233 2.4 0 2.845 1.58 2.845 3.637v4.188zM3.558 4.955c-.762 0-1.376-.617-1.376-1.377 0-.758.614-1.375 1.376-1.375.76 0 1.376.617 1.376 1.375 0 .76-.617 1.377-1.376 1.377zm1.188 8.68H2.37V6h2.376v7.635zM14.816 0H1.18C.528 0 0 .516 0 1.153v13.694C0 15.484.528 16 1.18 16h13.635c.652 0 1.185-.516 1.185-1.153V1.153C16 .516 15.467 0 14.815 0z" fill-rule="nonzero"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="pinterest" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C3.582 0 0 3.582 0 8c0 3.39 2.108 6.285 5.084 7.45-.07-.633-.133-1.604.028-2.295.146-.625.938-3.977.938-3.977s-.24-.48-.24-1.188c0-1.11.646-1.943 1.448-1.943.683 0 1.012.513 1.012 1.127 0 .687-.436 1.713-.662 2.664-.19.797.4 1.445 1.185 1.445 1.42 0 2.514-1.498 2.514-3.662 0-1.91-1.376-3.25-3.342-3.25-2.276 0-3.61 1.71-3.61 3.47 0 .69.263 1.43.593 1.83.066.08.075.15.057.23-.06.25-.196.8-.223.91-.035.15-.115.18-.268.11C3.516 10.46 2.89 9 2.89 7.82c0-2.52 1.834-4.84 5.287-4.84 2.774 0 4.932 1.98 4.932 4.62 0 2.76-1.74 4.98-4.16 4.98-.81 0-1.57-.42-1.84-.92l-.5 1.9c-.18.698-.67 1.57-1 2.1.75.23 1.54.357 2.37.357 4.41 0 8-3.58 8-8s-3.59-8-8-8z" fill-rule="nonzero"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="rss" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.8 16C12.8 8.978 7.022 3.2 0 3.2V0c8.777 0 16 7.223 16 16h-3.2zM2.194 11.61c1.21 0 2.195.985 2.195 2.196 0 1.21-.99 2.194-2.2 2.194C.98 16 0 15.017 0 13.806c0-1.21.983-2.195 2.194-2.195zM10.606 16h-3.11c0-4.113-3.383-7.497-7.496-7.497v-3.11c5.818 0 10.606 4.79 10.606 10.607z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="stackoverflow" class="svg-icon" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.658 14.577v-4.27h1.423V16H1.23v-5.693h1.42v4.27h10.006zm-8.583-1.423h7.16V11.73h-7.16v1.424zm.173-3.235l6.987 1.46.3-1.38L4.55 8.54l-.302 1.38zm.906-3.37l6.47 3.02.602-1.3-6.47-3.02-.602 1.29zm1.81-3.19l5.478 4.57.906-1.08L7.87 2.28l-.9 1.078zM10.502 0L9.338.863l4.27 5.735 1.164-.862L10.5 0z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="twitter" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M16 3.038c-.59.26-1.22.437-1.885.517.677-.407 1.198-1.05 1.443-1.816-.634.37-1.337.64-2.085.79-.598-.64-1.45-1.04-2.396-1.04-1.812 0-3.282 1.47-3.282 3.28 0 .26.03.51.085.75-2.728-.13-5.147-1.44-6.766-3.42C.83 2.58.67 3.14.67 3.75c0 1.14.58 2.143 1.46 2.732-.538-.017-1.045-.165-1.487-.41v.04c0 1.59 1.13 2.918 2.633 3.22-.276.074-.566.114-.865.114-.21 0-.41-.02-.61-.058.42 1.304 1.63 2.253 3.07 2.28-1.12.88-2.54 1.404-4.07 1.404-.26 0-.52-.015-.78-.045 1.46.93 3.18 1.474 5.04 1.474 6.04 0 9.34-5 9.34-9.33 0-.14 0-.28-.01-.42.64-.46 1.2-1.04 1.64-1.7z" fill-rule="nonzero"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="youtube" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 7.345c0-1.294.16-2.59.16-2.59s.156-1.1.636-1.587c.608-.637 1.408-.617 1.764-.684C3.84 2.36 8 2.324 8 2.324s3.362.004 5.6.166c.314.038.996.04 1.604.678.48.486.636 1.588.636 1.588S16 6.05 16 7.346v1.258c0 1.296-.16 2.59-.16 2.59s-.156 1.102-.636 1.588c-.608.638-1.29.64-1.604.678-2.238.162-5.6.166-5.6.166s-4.16-.037-5.44-.16c-.356-.067-1.156-.047-1.764-.684-.48-.487-.636-1.587-.636-1.587S0 9.9 0 8.605v-1.26zm6.348 2.73V5.58l4.323 2.255-4.32 2.24z"/></symbol>
|
||||||
|
|
||||||
|
<symbol id="mastodon" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
||||||
|
<path transform="scale(0.07)" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
|
||||||
|
<path transform="scale(0.07)" fill="#FFF" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
|
||||||
|
</symbol>
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
After Width: | Height: | Size: 9.7 KiB |
17
_site/feed.xml
Normal file
17
_site/feed.xml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.0.0">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2019-10-21T10:17:31+02:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Your awesome title</title><subtitle>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.</subtitle><entry><title type="html">Welcome to Jekyll!</title><link href="http://localhost:4000/jekyll/update/2019/10/20/welcome-to-jekyll.html" rel="alternate" type="text/html" title="Welcome to Jekyll!" /><published>2019-10-20T11:59:04+02:00</published><updated>2019-10-20T11:59:04+02:00</updated><id>http://localhost:4000/jekyll/update/2019/10/20/welcome-to-jekyll</id><content type="html" xml:base="http://localhost:4000/jekyll/update/2019/10/20/welcome-to-jekyll.html"><p>You’ll find this post in your <code class="highlighter-rouge">_posts</code> directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run <code class="highlighter-rouge">jekyll serve</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
|
||||||
|
|
||||||
|
<p>Jekyll requires blog post files to be named according to the following format:</p>
|
||||||
|
|
||||||
|
<p><code class="highlighter-rouge">YEAR-MONTH-DAY-title.MARKUP</code></p>
|
||||||
|
|
||||||
|
<p>Where <code class="highlighter-rouge">YEAR</code> is a four-digit number, <code class="highlighter-rouge">MONTH</code> and <code class="highlighter-rouge">DAY</code> are both two-digit numbers, and <code class="highlighter-rouge">MARKUP</code> is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.</p>
|
||||||
|
|
||||||
|
<p>Jekyll also offers powerful support for code snippets:</p>
|
||||||
|
|
||||||
|
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="k">def</span> <span class="nf">print_hi</span><span class="p">(</span><span class="nb">name</span><span class="p">)</span>
|
||||||
|
<span class="nb">puts</span> <span class="s2">"Hi, </span><span class="si">#{</span><span class="nb">name</span><span class="si">}</span><span class="s2">"</span>
|
||||||
|
<span class="k">end</span>
|
||||||
|
<span class="n">print_hi</span><span class="p">(</span><span class="s1">'Tom'</span><span class="p">)</span>
|
||||||
|
<span class="c1">#=&gt; prints 'Hi, Tom' to STDOUT.</span></code></pre></figure>
|
||||||
|
|
||||||
|
<p>Check out the <a href="https://jekyllrb.com/docs/home">Jekyll docs</a> for more info on how to get the most out of Jekyll. File all bugs/feature requests at <a href="https://github.com/jekyll/jekyll">Jekyll’s GitHub repo</a>. If you have questions, you can ask them on <a href="https://talk.jekyllrb.com/">Jekyll Talk</a>.</p></content><author><name></name></author><summary type="html">You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-regenerates your site when a file is updated.</summary></entry></feed>
|
0
_site/index.html
Normal file
0
_site/index.html
Normal file
11
_site/package.json
Normal file
11
_site/package.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "rf-web",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
18
about.markdown
Normal file
18
about.markdown
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: About
|
||||||
|
permalink: /about/
|
||||||
|
---
|
||||||
|
|
||||||
|
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
|
||||||
|
|
||||||
|
You can find the source code for Minima at GitHub:
|
||||||
|
[jekyll][jekyll-organization] /
|
||||||
|
[minima](https://github.com/jekyll/minima)
|
||||||
|
|
||||||
|
You can find the source code for Jekyll at GitHub:
|
||||||
|
[jekyll][jekyll-organization] /
|
||||||
|
[jekyll](https://github.com/jekyll/jekyll)
|
||||||
|
|
||||||
|
|
||||||
|
[jekyll-organization]: https://github.com/jekyll
|
7
assets/css/index.scss
Normal file
7
assets/css/index.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
@import "temp";
|
||||||
|
|
||||||
|
body, .testing {
|
||||||
|
display: none;
|
||||||
|
}
|
6
index.markdown
Normal file
6
index.markdown
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
# Feel free to add content and custom Front Matter to this file.
|
||||||
|
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
|
||||||
|
|
||||||
|
layout: home
|
||||||
|
---
|
11
package.json
Normal file
11
package.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "rf-web",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
27
vendor/bundle/bin/jekyll
vendored
Executable file
27
vendor/bundle/bin/jekyll
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# This file was generated by RubyGems.
|
||||||
|
#
|
||||||
|
# The application 'jekyll' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
|
||||||
|
version = ">= 0.a"
|
||||||
|
|
||||||
|
str = ARGV.first
|
||||||
|
if str
|
||||||
|
str = str.b[/\A_(.*)_\z/, 1]
|
||||||
|
if str and Gem::Version.correct?(str)
|
||||||
|
version = str
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if Gem.respond_to?(:activate_bin_path)
|
||||||
|
load Gem.activate_bin_path('jekyll', 'jekyll', version)
|
||||||
|
else
|
||||||
|
gem "jekyll", version
|
||||||
|
load Gem.bin_path("jekyll", "jekyll", version)
|
||||||
|
end
|
27
vendor/bundle/bin/kramdown
vendored
Executable file
27
vendor/bundle/bin/kramdown
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# This file was generated by RubyGems.
|
||||||
|
#
|
||||||
|
# The application 'kramdown' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
|
||||||
|
version = ">= 0.a"
|
||||||
|
|
||||||
|
str = ARGV.first
|
||||||
|
if str
|
||||||
|
str = str.b[/\A_(.*)_\z/, 1]
|
||||||
|
if str and Gem::Version.correct?(str)
|
||||||
|
version = str
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if Gem.respond_to?(:activate_bin_path)
|
||||||
|
load Gem.activate_bin_path('kramdown', 'kramdown', version)
|
||||||
|
else
|
||||||
|
gem "kramdown", version
|
||||||
|
load Gem.bin_path("kramdown", "kramdown", version)
|
||||||
|
end
|
27
vendor/bundle/bin/listen
vendored
Executable file
27
vendor/bundle/bin/listen
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# This file was generated by RubyGems.
|
||||||
|
#
|
||||||
|
# The application 'listen' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
|
||||||
|
version = ">= 0.a"
|
||||||
|
|
||||||
|
str = ARGV.first
|
||||||
|
if str
|
||||||
|
str = str.b[/\A_(.*)_\z/, 1]
|
||||||
|
if str and Gem::Version.correct?(str)
|
||||||
|
version = str
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if Gem.respond_to?(:activate_bin_path)
|
||||||
|
load Gem.activate_bin_path('listen', 'listen', version)
|
||||||
|
else
|
||||||
|
gem "listen", version
|
||||||
|
load Gem.bin_path("listen", "listen", version)
|
||||||
|
end
|
27
vendor/bundle/bin/rougify
vendored
Executable file
27
vendor/bundle/bin/rougify
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# This file was generated by RubyGems.
|
||||||
|
#
|
||||||
|
# The application 'rouge' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
|
||||||
|
version = ">= 0.a"
|
||||||
|
|
||||||
|
str = ARGV.first
|
||||||
|
if str
|
||||||
|
str = str.b[/\A_(.*)_\z/, 1]
|
||||||
|
if str and Gem::Version.correct?(str)
|
||||||
|
version = str
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if Gem.respond_to?(:activate_bin_path)
|
||||||
|
load Gem.activate_bin_path('rouge', 'rougify', version)
|
||||||
|
else
|
||||||
|
gem "rouge", version
|
||||||
|
load Gem.bin_path("rouge", "rougify", version)
|
||||||
|
end
|
27
vendor/bundle/bin/safe_yaml
vendored
Executable file
27
vendor/bundle/bin/safe_yaml
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# This file was generated by RubyGems.
|
||||||
|
#
|
||||||
|
# The application 'safe_yaml' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
|
||||||
|
version = ">= 0.a"
|
||||||
|
|
||||||
|
str = ARGV.first
|
||||||
|
if str
|
||||||
|
str = str.b[/\A_(.*)_\z/, 1]
|
||||||
|
if str and Gem::Version.correct?(str)
|
||||||
|
version = str
|
||||||
|
ARGV.shift
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if Gem.respond_to?(:activate_bin_path)
|
||||||
|
load Gem.activate_bin_path('safe_yaml', 'safe_yaml', version)
|
||||||
|
else
|
||||||
|
gem "safe_yaml", version
|
||||||
|
load Gem.bin_path("safe_yaml", "safe_yaml", version)
|
||||||
|
end
|
BIN
vendor/bundle/cache/addressable-2.7.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/addressable-2.7.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/colorator-1.1.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/colorator-1.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/concurrent-ruby-1.1.5.gem
vendored
Normal file
BIN
vendor/bundle/cache/concurrent-ruby-1.1.5.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/em-websocket-0.5.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/em-websocket-0.5.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/eventmachine-1.2.7.gem
vendored
Normal file
BIN
vendor/bundle/cache/eventmachine-1.2.7.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/ffi-1.11.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/ffi-1.11.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/forwardable-extended-2.6.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/forwardable-extended-2.6.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/http_parser.rb-0.6.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/http_parser.rb-0.6.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/i18n-1.7.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/i18n-1.7.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/jekyll-4.0.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/jekyll-4.0.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/jekyll-feed-0.12.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/jekyll-feed-0.12.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/jekyll-sass-converter-2.0.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/jekyll-sass-converter-2.0.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/jekyll-seo-tag-2.6.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/jekyll-seo-tag-2.6.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/jekyll-watch-2.2.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/jekyll-watch-2.2.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/kramdown-2.1.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/kramdown-2.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/kramdown-parser-gfm-1.1.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/kramdown-parser-gfm-1.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/liquid-4.0.3.gem
vendored
Normal file
BIN
vendor/bundle/cache/liquid-4.0.3.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/listen-3.2.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/listen-3.2.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/mercenary-0.3.6.gem
vendored
Normal file
BIN
vendor/bundle/cache/mercenary-0.3.6.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/minima-2.5.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/minima-2.5.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/pathutil-0.16.2.gem
vendored
Normal file
BIN
vendor/bundle/cache/pathutil-0.16.2.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/public_suffix-4.0.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/public_suffix-4.0.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/rb-fsevent-0.10.3.gem
vendored
Normal file
BIN
vendor/bundle/cache/rb-fsevent-0.10.3.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/rb-inotify-0.10.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/rb-inotify-0.10.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/rouge-3.12.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/rouge-3.12.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/safe_yaml-1.0.5.gem
vendored
Normal file
BIN
vendor/bundle/cache/safe_yaml-1.0.5.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/sassc-2.2.1.gem
vendored
Normal file
BIN
vendor/bundle/cache/sassc-2.2.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/terminal-table-1.8.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/terminal-table-1.8.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/cache/unicode-display_width-1.6.0.gem
vendored
Normal file
BIN
vendor/bundle/cache/unicode-display_width-1.6.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/fastfilereaderext.bundle
vendored
Executable file
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/fastfilereaderext.bundle
vendored
Executable file
Binary file not shown.
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/gem.build_complete
vendored
Normal file
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/gem.build_complete
vendored
Normal file
16
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/gem_make.out
vendored
Normal file
16
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/gem_make.out
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/eventmachine-1.2.7/ext/fastfilereader
|
||||||
|
/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/bin/ruby -I /Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib/ruby/site_ruby/2.6.0 -r ./siteconf20191020-69875-moqdwe.rb extconf.rb
|
||||||
|
creating Makefile
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/eventmachine-1.2.7/ext/fastfilereader
|
||||||
|
make "DESTDIR=" clean
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/eventmachine-1.2.7/ext/fastfilereader
|
||||||
|
make "DESTDIR="
|
||||||
|
compiling mapper.cpp
|
||||||
|
compiling rubymain.cpp
|
||||||
|
linking shared-object fastfilereaderext.bundle
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/eventmachine-1.2.7/ext/fastfilereader
|
||||||
|
make "DESTDIR=" install
|
||||||
|
/usr/local/opt/coreutils/bin/ginstall -c -m 0755 fastfilereaderext.bundle ./.gem.20191020-69875-rb74yq
|
11
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/mkmf.log
vendored
Normal file
11
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/mkmf.log
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: int main(int argc, char **argv)
|
||||||
|
4: {
|
||||||
|
5: return 0;
|
||||||
|
6: }
|
||||||
|
/* end */
|
||||||
|
|
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/rubyeventmachine.bundle
vendored
Executable file
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/eventmachine-1.2.7/rubyeventmachine.bundle
vendored
Executable file
Binary file not shown.
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/ffi_c.bundle
vendored
Executable file
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/ffi_c.bundle
vendored
Executable file
Binary file not shown.
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/gem.build_complete
vendored
Normal file
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/gem.build_complete
vendored
Normal file
128
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/gem_make.out
vendored
Normal file
128
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/gem_make.out
vendored
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c
|
||||||
|
/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/bin/ruby -I /Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib/ruby/site_ruby/2.6.0 -r ./siteconf20191020-69875-r3jdpp.rb extconf.rb
|
||||||
|
checking for ffi.h... no
|
||||||
|
checking for ffi.h in /usr/local/include,/usr/include/ffi... no
|
||||||
|
checking for shlwapi.h... no
|
||||||
|
checking for rb_thread_call_without_gvl()... yes
|
||||||
|
checking for ruby_native_thread_p()... yes
|
||||||
|
checking for ruby_thread_has_gvl_p()... yes
|
||||||
|
creating extconf.h
|
||||||
|
creating Makefile
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c
|
||||||
|
make "DESTDIR=" clean
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c
|
||||||
|
make "DESTDIR="
|
||||||
|
Configuring libffi
|
||||||
|
clang: error: unsupported option '-print-multi-os-directory'
|
||||||
|
clang: error: no input files
|
||||||
|
cd "/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi-x86_64-darwin18" && /Applications/Xcode.app/Contents/Developer/usr/bin/make
|
||||||
|
/Applications/Xcode.app/Contents/Developer/usr/bin/make 'AR_FLAGS=' 'CC_FOR_BUILD=' 'CFLAGS=-Wall -fexceptions' 'CXXFLAGS=-g -O2' 'CFLAGS_FOR_BUILD=' 'CFLAGS_FOR_TARGET=' 'INSTALL=/usr/local/bin/ginstall -c' 'INSTALL_DATA=/usr/local/bin/ginstall -c -m 644' 'INSTALL_PROGRAM=/usr/local/bin/ginstall -c' 'INSTALL_SCRIPT=/usr/local/bin/ginstall -c' 'JC1FLAGS=' 'LDFLAGS=' 'LIBCFLAGS=' 'LIBCFLAGS_FOR_TARGET=' 'MAKE=/Applications/Xcode.app/Contents/Developer/usr/bin/make' 'MAKEINFO=/bin/sh /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/missing makeinfo ' 'PICFLAG=' 'PICFLAG_FOR_TARGET=' 'RUNTESTFLAGS=' 'SHELL=/bin/sh' 'exec_prefix=/usr/local' 'infodir=/usr/local/share/info' 'libdir=/usr/local/lib' 'mandir=/usr/local/share/man' 'prefix=/usr/local' 'AR=ar' 'AS=as' 'CC=gcc' 'CXX=g++' 'LD=ld' 'NM=/usr/bin/nm -B' 'RANLIB=ranlib' 'DESTDIR=' all-recursive
|
||||||
|
Making all in include
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
Making all in testsuite
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
Making all in man
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/prep_cif.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/prep_cif.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/prep_cif.c -fno-common -DPIC -o src/.libs/prep_cif.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/types.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/types.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/types.c -fno-common -DPIC -o src/.libs/types.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/raw_api.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/raw_api.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/raw_api.c -fno-common -DPIC -o src/.libs/raw_api.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/java_raw_api.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/java_raw_api.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/java_raw_api.c -fno-common -DPIC -o src/.libs/java_raw_api.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/closures.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/closures.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/closures.c -fno-common -DPIC -o src/.libs/closures.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/x86/ffi64.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffi64.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffi64.c -fno-common -DPIC -o src/x86/.libs/ffi64.o
|
||||||
|
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -c -o src/x86/unix64.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/unix64.S
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/unix64.S -fno-common -DPIC -o src/x86/.libs/unix64.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c -o src/x86/ffiw64.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffiw64.c
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -Wall -fexceptions -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/ffiw64.c -fno-common -DPIC -o src/x86/.libs/ffiw64.o
|
||||||
|
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -c -o src/x86/win64.lo /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/win64.S
|
||||||
|
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -I. -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/include -Iinclude -I/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src -c /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/src/x86/win64.S -fno-common -DPIC -o src/x86/.libs/win64.o
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -fexceptions -o libffi_convenience.la src/prep_cif.lo src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo src/x86/ffi64.lo src/x86/unix64.lo src/x86/ffiw64.lo src/x86/win64.lo
|
||||||
|
libtool: link: ar cru .libs/libffi_convenience.a src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi64.o src/x86/.libs/unix64.o src/x86/.libs/ffiw64.o src/x86/.libs/win64.o
|
||||||
|
libtool: link: ranlib .libs/libffi_convenience.a
|
||||||
|
libtool: link: ( cd ".libs" && rm -f "libffi_convenience.la" && ln -s "../libffi_convenience.la" "libffi_convenience.la" )
|
||||||
|
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -fexceptions -no-undefined -version-info `grep -v '^#' /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/libtool-version` -o libffi.la -rpath /usr/local/lib src/prep_cif.lo src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo src/x86/ffi64.lo src/x86/unix64.lo src/x86/ffiw64.lo src/x86/win64.lo
|
||||||
|
libtool: link: gcc -dynamiclib -o .libs/libffi.7.dylib src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi64.o src/x86/.libs/unix64.o src/x86/.libs/ffiw64.o src/x86/.libs/win64.o -install_name /usr/local/lib/libffi.7.dylib -compatibility_version 9 -current_version 9.0 -Wl,-single_module
|
||||||
|
libtool: link: (cd ".libs" && rm -f "libffi.dylib" && ln -s "libffi.7.dylib" "libffi.dylib")
|
||||||
|
libtool: link: ( cd ".libs" && rm -f "libffi.la" && ln -s "../libffi.la" "libffi.la" )
|
||||||
|
compiling AbstractMemory.c
|
||||||
|
compiling ArrayType.c
|
||||||
|
compiling Buffer.c
|
||||||
|
compiling Call.c
|
||||||
|
compiling ClosurePool.c
|
||||||
|
compiling DynamicLibrary.c
|
||||||
|
compiling Function.c
|
||||||
|
Function.c:867:17: warning: 'ffi_prep_closure' is deprecated [-Wdeprecated-declarations]
|
||||||
|
ffiStatus = ffi_prep_closure(code, &fnInfo->ffi_cif, callback_invoke, closure);
|
||||||
|
^
|
||||||
|
/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi-x86_64-darwin18/include/ffi.h:339:18: note: 'ffi_prep_closure' has been explicitly marked deprecated here
|
||||||
|
__attribute__((deprecated))
|
||||||
|
^
|
||||||
|
1 warning generated.
|
||||||
|
compiling FunctionInfo.c
|
||||||
|
compiling LastError.c
|
||||||
|
compiling LongDouble.c
|
||||||
|
compiling MappedType.c
|
||||||
|
compiling MemoryPointer.c
|
||||||
|
compiling MethodHandle.c
|
||||||
|
compiling Platform.c
|
||||||
|
compiling Pointer.c
|
||||||
|
compiling Struct.c
|
||||||
|
compiling StructByValue.c
|
||||||
|
compiling StructLayout.c
|
||||||
|
compiling Thread.c
|
||||||
|
compiling Type.c
|
||||||
|
compiling Types.c
|
||||||
|
compiling Variadic.c
|
||||||
|
compiling ffi.c
|
||||||
|
linking shared-object ffi_c.bundle
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c
|
||||||
|
make "DESTDIR=" install
|
||||||
|
cd "/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi-x86_64-darwin18" && /Applications/Xcode.app/Contents/Developer/usr/bin/make
|
||||||
|
/Applications/Xcode.app/Contents/Developer/usr/bin/make 'AR_FLAGS=' 'CC_FOR_BUILD=' 'CFLAGS=-Wall -fexceptions' 'CXXFLAGS=-g -O2' 'CFLAGS_FOR_BUILD=' 'CFLAGS_FOR_TARGET=' 'INSTALL=/usr/local/bin/ginstall -c' 'INSTALL_DATA=/usr/local/bin/ginstall -c -m 644' 'INSTALL_PROGRAM=/usr/local/bin/ginstall -c' 'INSTALL_SCRIPT=/usr/local/bin/ginstall -c' 'JC1FLAGS=' 'LDFLAGS=' 'LIBCFLAGS=' 'LIBCFLAGS_FOR_TARGET=' 'MAKE=/Applications/Xcode.app/Contents/Developer/usr/bin/make' 'MAKEINFO=/bin/sh /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi/missing makeinfo ' 'PICFLAG=' 'PICFLAG_FOR_TARGET=' 'RUNTESTFLAGS=' 'SHELL=/bin/sh' 'exec_prefix=/usr/local' 'infodir=/usr/local/share/info' 'libdir=/usr/local/lib' 'mandir=/usr/local/share/man' 'prefix=/usr/local' 'AR=ar' 'AS=as' 'CC=gcc' 'CXX=g++' 'LD=ld' 'NM=/usr/bin/nm -B' 'RANLIB=ranlib' 'DESTDIR=' all-recursive
|
||||||
|
Making all in include
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
Making all in testsuite
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
Making all in man
|
||||||
|
make[3]: Nothing to be done for `all'.
|
||||||
|
make[3]: Nothing to be done for `all-am'.
|
||||||
|
compiling AbstractMemory.c
|
||||||
|
compiling ArrayType.c
|
||||||
|
compiling Buffer.c
|
||||||
|
compiling Call.c
|
||||||
|
compiling ClosurePool.c
|
||||||
|
compiling DynamicLibrary.c
|
||||||
|
compiling Function.c
|
||||||
|
Function.c:867:17: warning: 'ffi_prep_closure' is deprecated [-Wdeprecated-declarations]
|
||||||
|
ffiStatus = ffi_prep_closure(code, &fnInfo->ffi_cif, callback_invoke, closure);
|
||||||
|
^
|
||||||
|
/Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/ffi-1.11.1/ext/ffi_c/libffi-x86_64-darwin18/include/ffi.h:339:18: note: 'ffi_prep_closure' has been explicitly marked deprecated here
|
||||||
|
__attribute__((deprecated))
|
||||||
|
^
|
||||||
|
1 warning generated.
|
||||||
|
compiling FunctionInfo.c
|
||||||
|
compiling LastError.c
|
||||||
|
compiling LongDouble.c
|
||||||
|
compiling MappedType.c
|
||||||
|
compiling MemoryPointer.c
|
||||||
|
compiling MethodHandle.c
|
||||||
|
compiling Platform.c
|
||||||
|
compiling Pointer.c
|
||||||
|
compiling Struct.c
|
||||||
|
compiling StructByValue.c
|
||||||
|
compiling StructLayout.c
|
||||||
|
compiling Thread.c
|
||||||
|
compiling Type.c
|
||||||
|
compiling Types.c
|
||||||
|
compiling Variadic.c
|
||||||
|
compiling ffi.c
|
||||||
|
linking shared-object ffi_c.bundle
|
||||||
|
/usr/local/opt/coreutils/bin/ginstall -c -m 0755 ffi_c.bundle ./.gem.20191020-69875-3w418n
|
215
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/mkmf.log
vendored
Normal file
215
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/ffi-1.11.1/mkmf.log
vendored
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
"pkg-config --exists libffi"
|
||||||
|
package configuration for libffi is not found
|
||||||
|
have_header: checking for ffi.h... -------------------- no
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: int main(int argc, char **argv)
|
||||||
|
4: {
|
||||||
|
5: return 0;
|
||||||
|
6: }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
"gcc -E -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -o conftest.i"
|
||||||
|
conftest.c:3:10: fatal error: 'ffi.h' file not found
|
||||||
|
#include <ffi.h>
|
||||||
|
^~~~~~~
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: #include <ffi.h>
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
find_header: checking for ffi.h in /usr/local/include,/usr/include/ffi... -------------------- no
|
||||||
|
|
||||||
|
"gcc -E -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -o conftest.i"
|
||||||
|
conftest.c:3:10: fatal error: 'ffi.h' file not found
|
||||||
|
#include <ffi.h>
|
||||||
|
^~~~~~~
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: #include <ffi.h>
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
"gcc -E -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe -I/usr/local/include conftest.c -o conftest.i"
|
||||||
|
conftest.c:3:10: fatal error: 'ffi.h' file not found
|
||||||
|
#include <ffi.h>
|
||||||
|
^~~~~~~
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: #include <ffi.h>
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
"gcc -E -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe -I/usr/include/ffi conftest.c -o conftest.i"
|
||||||
|
conftest.c:3:10: fatal error: 'ffi.h' file not found
|
||||||
|
#include <ffi.h>
|
||||||
|
^~~~~~~
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: #include <ffi.h>
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
have_header: checking for shlwapi.h... -------------------- no
|
||||||
|
|
||||||
|
"gcc -E -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -o conftest.i"
|
||||||
|
conftest.c:3:10: fatal error: 'shlwapi.h' file not found
|
||||||
|
#include <shlwapi.h>
|
||||||
|
^~~~~~~~~~~
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: #include <shlwapi.h>
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
have_func: checking for rb_thread_call_without_gvl()... -------------------- yes
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
conftest.c:14:57: error: use of undeclared identifier 'rb_thread_call_without_gvl'
|
||||||
|
int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_call_without_gvl; return !p; }
|
||||||
|
^
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: /*top*/
|
||||||
|
4: extern int t(void);
|
||||||
|
5: int main(int argc, char **argv)
|
||||||
|
6: {
|
||||||
|
7: if (argc > 1000000) {
|
||||||
|
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
||||||
|
9: printf("%d", (*tp)());
|
||||||
|
10: }
|
||||||
|
11:
|
||||||
|
12: return 0;
|
||||||
|
13: }
|
||||||
|
14: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_call_without_gvl; return !p; }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: /*top*/
|
||||||
|
4: extern int t(void);
|
||||||
|
5: int main(int argc, char **argv)
|
||||||
|
6: {
|
||||||
|
7: if (argc > 1000000) {
|
||||||
|
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
||||||
|
9: printf("%d", (*tp)());
|
||||||
|
10: }
|
||||||
|
11:
|
||||||
|
12: return 0;
|
||||||
|
13: }
|
||||||
|
14: extern void rb_thread_call_without_gvl();
|
||||||
|
15: int t(void) { rb_thread_call_without_gvl(); return 0; }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
have_func: checking for ruby_native_thread_p()... -------------------- yes
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: /*top*/
|
||||||
|
4: extern int t(void);
|
||||||
|
5: int main(int argc, char **argv)
|
||||||
|
6: {
|
||||||
|
7: if (argc > 1000000) {
|
||||||
|
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
||||||
|
9: printf("%d", (*tp)());
|
||||||
|
10: }
|
||||||
|
11:
|
||||||
|
12: return 0;
|
||||||
|
13: }
|
||||||
|
14: int t(void) { void ((*volatile p)()); p = (void ((*)()))ruby_native_thread_p; return !p; }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
have_func: checking for ruby_thread_has_gvl_p()... -------------------- yes
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
conftest.c:14:57: error: use of undeclared identifier 'ruby_thread_has_gvl_p'
|
||||||
|
int t(void) { void ((*volatile p)()); p = (void ((*)()))ruby_thread_has_gvl_p; return !p; }
|
||||||
|
^
|
||||||
|
1 error generated.
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: /*top*/
|
||||||
|
4: extern int t(void);
|
||||||
|
5: int main(int argc, char **argv)
|
||||||
|
6: {
|
||||||
|
7: if (argc > 1000000) {
|
||||||
|
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
||||||
|
9: printf("%d", (*tp)());
|
||||||
|
10: }
|
||||||
|
11:
|
||||||
|
12: return 0;
|
||||||
|
13: }
|
||||||
|
14: int t(void) { void ((*volatile p)()); p = (void ((*)()))ruby_thread_has_gvl_p; return !p; }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
"gcc -o conftest -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/x86_64-darwin18 -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0/ruby/backward -I/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/include/ruby-2.6.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -fno-common -pipe conftest.c -L. -L/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -lruby.2.6 "
|
||||||
|
checked program was:
|
||||||
|
/* begin */
|
||||||
|
1: #include "ruby.h"
|
||||||
|
2:
|
||||||
|
3: /*top*/
|
||||||
|
4: extern int t(void);
|
||||||
|
5: int main(int argc, char **argv)
|
||||||
|
6: {
|
||||||
|
7: if (argc > 1000000) {
|
||||||
|
8: int (* volatile tp)(void)=(int (*)(void))&t;
|
||||||
|
9: printf("%d", (*tp)());
|
||||||
|
10: }
|
||||||
|
11:
|
||||||
|
12: return 0;
|
||||||
|
13: }
|
||||||
|
14: extern void ruby_thread_has_gvl_p();
|
||||||
|
15: int t(void) { ruby_thread_has_gvl_p(); return 0; }
|
||||||
|
/* end */
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
extconf.h is:
|
||||||
|
/* begin */
|
||||||
|
1: #ifndef EXTCONF_H
|
||||||
|
2: #define EXTCONF_H
|
||||||
|
3: #define HAVE_RB_THREAD_CALL_WITHOUT_GVL 1
|
||||||
|
4: #define HAVE_RUBY_NATIVE_THREAD_P 1
|
||||||
|
5: #define HAVE_RUBY_THREAD_HAS_GVL_P 1
|
||||||
|
6: #define HAVE_FFI_PREP_CIF_VAR 1
|
||||||
|
7: #define USE_INTERNAL_LIBFFI 1
|
||||||
|
8: #define RUBY_1_9 1
|
||||||
|
9: #endif
|
||||||
|
/* end */
|
||||||
|
|
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/gem.build_complete
vendored
Normal file
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/gem.build_complete
vendored
Normal file
16
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/gem_make.out
vendored
Normal file
16
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/gem_make.out
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/http_parser.rb-0.6.0/ext/ruby_http_parser
|
||||||
|
/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/bin/ruby -I /Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib/ruby/site_ruby/2.6.0 -r ./siteconf20191020-69875-15g4lcd.rb extconf.rb
|
||||||
|
creating Makefile
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/http_parser.rb-0.6.0/ext/ruby_http_parser
|
||||||
|
make "DESTDIR=" clean
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/http_parser.rb-0.6.0/ext/ruby_http_parser
|
||||||
|
make "DESTDIR="
|
||||||
|
compiling ruby_http_parser.c
|
||||||
|
compiling ryah_http_parser.c
|
||||||
|
linking shared-object ruby_http_parser.bundle
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/http_parser.rb-0.6.0/ext/ruby_http_parser
|
||||||
|
make "DESTDIR=" install
|
||||||
|
/usr/local/opt/coreutils/bin/ginstall -c -m 0755 ruby_http_parser.bundle ./.gem.20191020-69875-2pn1qv
|
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/ruby_http_parser.bundle
vendored
Executable file
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/http_parser.rb-0.6.0/ruby_http_parser.bundle
vendored
Executable file
Binary file not shown.
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/gem.build_complete
vendored
Normal file
0
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/gem.build_complete
vendored
Normal file
75
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/gem_make.out
vendored
Normal file
75
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/gem_make.out
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/sassc-2.2.1/ext
|
||||||
|
/Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/bin/ruby -I /Users/BenjaminJones/.rvm/rubies/ruby-2.6.3/lib/ruby/site_ruby/2.6.0 -r ./siteconf20191020-69875-10qd776.rb extconf.rb
|
||||||
|
creating Makefile
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/sassc-2.2.1/ext
|
||||||
|
make "DESTDIR=" clean
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/sassc-2.2.1/ext
|
||||||
|
make "DESTDIR="
|
||||||
|
compiling ./libsass/src/units.cpp
|
||||||
|
compiling ./libsass/src/fn_miscs.cpp
|
||||||
|
compiling ./libsass/src/util.cpp
|
||||||
|
compiling ./libsass/src/ast_selectors.cpp
|
||||||
|
compiling ./libsass/src/environment.cpp
|
||||||
|
compiling ./libsass/src/memory/SharedPtr.cpp
|
||||||
|
compiling ./libsass/src/ast_sel_unify.cpp
|
||||||
|
compiling ./libsass/src/ast.cpp
|
||||||
|
compiling ./libsass/src/emitter.cpp
|
||||||
|
compiling ./libsass/src/bind.cpp
|
||||||
|
compiling ./libsass/src/sass_functions.cpp
|
||||||
|
compiling ./libsass/src/ast2c.cpp
|
||||||
|
compiling ./libsass/src/base64vlq.cpp
|
||||||
|
compiling ./libsass/src/context.cpp
|
||||||
|
compiling ./libsass/src/remove_placeholders.cpp
|
||||||
|
compiling ./libsass/src/node.cpp
|
||||||
|
compiling ./libsass/src/fn_colors.cpp
|
||||||
|
compiling ./libsass/src/sass_values.cpp
|
||||||
|
compiling ./libsass/src/constants.cpp
|
||||||
|
compiling ./libsass/src/ast_values.cpp
|
||||||
|
compiling ./libsass/src/lexer.cpp
|
||||||
|
compiling ./libsass/src/color_maps.cpp
|
||||||
|
compiling ./libsass/src/fn_selectors.cpp
|
||||||
|
compiling ./libsass/src/fn_numbers.cpp
|
||||||
|
compiling ./libsass/src/operators.cpp
|
||||||
|
compiling ./libsass/src/output.cpp
|
||||||
|
compiling ./libsass/src/source_map.cpp
|
||||||
|
compiling ./libsass/src/sass.cpp
|
||||||
|
compiling ./libsass/src/listize.cpp
|
||||||
|
compiling ./libsass/src/ast_fwd_decl.cpp
|
||||||
|
compiling ./libsass/src/sass_util.cpp
|
||||||
|
compiling ./libsass/src/fn_strings.cpp
|
||||||
|
compiling ./libsass/src/fn_utils.cpp
|
||||||
|
compiling ./libsass/src/ast_sel_cmp.cpp
|
||||||
|
compiling ./libsass/src/fn_maps.cpp
|
||||||
|
compiling ./libsass/src/file.cpp
|
||||||
|
compiling ./libsass/src/c99func.c
|
||||||
|
compiling ./libsass/src/ast_supports.cpp
|
||||||
|
compiling ./libsass/src/check_nesting.cpp
|
||||||
|
compiling ./libsass/src/inspect.cpp
|
||||||
|
compiling ./libsass/src/extend.cpp
|
||||||
|
compiling ./libsass/src/plugins.cpp
|
||||||
|
compiling ./libsass/src/cssize.cpp
|
||||||
|
compiling ./libsass/src/sass2scss.cpp
|
||||||
|
compiling ./libsass/src/to_value.cpp
|
||||||
|
compiling ./libsass/src/prelexer.cpp
|
||||||
|
compiling ./libsass/src/subset_map.cpp
|
||||||
|
compiling ./libsass/src/utf8_string.cpp
|
||||||
|
compiling ./libsass/src/backtrace.cpp
|
||||||
|
compiling ./libsass/src/json.cpp
|
||||||
|
compiling ./libsass/src/parser.cpp
|
||||||
|
compiling ./libsass/src/util_string.cpp
|
||||||
|
compiling ./libsass/src/error_handling.cpp
|
||||||
|
compiling ./libsass/src/sass_context.cpp
|
||||||
|
compiling ./libsass/src/eval.cpp
|
||||||
|
compiling ./libsass/src/values.cpp
|
||||||
|
compiling ./libsass/src/cencode.c
|
||||||
|
compiling ./libsass/src/fn_lists.cpp
|
||||||
|
compiling ./libsass/src/position.cpp
|
||||||
|
compiling ./libsass/src/expand.cpp
|
||||||
|
compiling ./libsass/src/c2ast.cpp
|
||||||
|
linking shared-object sassc/libsass.bundle
|
||||||
|
|
||||||
|
current directory: /Users/BenjaminJones/Documents/Code/ReclaimFutures/rf-web/vendor/bundle/gems/sassc-2.2.1/ext
|
||||||
|
make "DESTDIR=" install
|
||||||
|
/usr/local/opt/coreutils/bin/ginstall -c -m 0755 libsass.bundle ./.gem.20191020-69875-1kuo96p/sassc
|
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/sassc/libsass.bundle
vendored
Executable file
BIN
vendor/bundle/extensions/x86_64-darwin-18/2.6.0/sassc-2.2.1/sassc/libsass.bundle
vendored
Executable file
Binary file not shown.
235
vendor/bundle/gems/addressable-2.7.0/CHANGELOG.md
vendored
Normal file
235
vendor/bundle/gems/addressable-2.7.0/CHANGELOG.md
vendored
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
# Addressable 2.7.0
|
||||||
|
- added `:compacted` flag to `normalized_query`
|
||||||
|
- `heuristic_parse` handles `mailto:` more intuitively
|
||||||
|
- refactored validation to use a prepended module
|
||||||
|
- dropped explicit support for JRuby 9.0.5.0
|
||||||
|
- compatibility w/ public_suffix 4.x
|
||||||
|
- performance improvements
|
||||||
|
|
||||||
|
# Addressable 2.6.0
|
||||||
|
- added `tld=` method to allow assignment to the public suffix
|
||||||
|
- most `heuristic_parse` patterns are now case-insensitive
|
||||||
|
- `heuristic_parse` handles more `file://` URI variations
|
||||||
|
- fixes bug in `heuristic_parse` when uri starts with digit
|
||||||
|
- fixes bug in `request_uri=` with query strings
|
||||||
|
- fixes template issues with `nil` and `?` operator
|
||||||
|
- `frozen_string_literal` pragmas added
|
||||||
|
- minor performance improvements in regexps
|
||||||
|
- fixes to eliminate warnings
|
||||||
|
|
||||||
|
# Addressable 2.5.2
|
||||||
|
- better support for frozen string literals
|
||||||
|
- fixed bug w/ uppercase characters in scheme
|
||||||
|
- IDNA errors w/ emoji URLs
|
||||||
|
- compatibility w/ public_suffix 3.x
|
||||||
|
|
||||||
|
# Addressable 2.5.1
|
||||||
|
- allow unicode normalization to be disabled for URI Template expansion
|
||||||
|
- removed duplicate test
|
||||||
|
|
||||||
|
# Addressable 2.5.0
|
||||||
|
- dropping support for Ruby 1.9
|
||||||
|
- adding support for Ruby 2.4 preview
|
||||||
|
- add support for public suffixes and tld; first runtime dependency
|
||||||
|
- hostname escaping should match RFC; underscores in hostnames no longer escaped
|
||||||
|
- paths beginning with // and missing an authority are now considered invalid
|
||||||
|
- validation now also takes place after setting a path
|
||||||
|
- handle backslashes in authority more like a browser for `heuristic_parse`
|
||||||
|
- unescaped backslashes in host now raise an `InvalidURIError`
|
||||||
|
- `merge!`, `join!`, `omit!` and `normalize!` don't disable deferred validation
|
||||||
|
- `heuristic_parse` now trims whitespace before parsing
|
||||||
|
- host parts longer than 63 bytes will be ignored and not passed to libidn
|
||||||
|
- normalized values always encoded as UTF-8
|
||||||
|
|
||||||
|
# Addressable 2.4.0
|
||||||
|
- support for 1.8.x dropped
|
||||||
|
- double quotes in a host now raises an error
|
||||||
|
- newlines in host will no longer get unescaped during normalization
|
||||||
|
- stricter handling of bogus scheme values
|
||||||
|
- stricter handling of encoded port values
|
||||||
|
- calling `require 'addressable'` will now load both the URI and Template files
|
||||||
|
- assigning to the `hostname` component with an `IPAddr` object is now supported
|
||||||
|
- assigning to the `origin` component is now supported
|
||||||
|
- fixed minor bug where an exception would be thrown for a missing ACE suffix
|
||||||
|
- better partial expansion of URI templates
|
||||||
|
|
||||||
|
# Addressable 2.3.8
|
||||||
|
- fix warnings
|
||||||
|
- update dependency gems
|
||||||
|
- support for 1.8.x officially deprecated
|
||||||
|
|
||||||
|
# Addressable 2.3.7
|
||||||
|
- fix scenario in which invalid URIs don't get an exception until inspected
|
||||||
|
- handle hostnames with two adjacent periods correctly
|
||||||
|
- upgrade of RSpec
|
||||||
|
|
||||||
|
# Addressable 2.3.6
|
||||||
|
- normalization drops empty query string
|
||||||
|
- better handling in template extract for missing values
|
||||||
|
- template modifier for `'?'` now treated as optional
|
||||||
|
- fixed issue where character class parameters were modified
|
||||||
|
- templates can now be tested for equality
|
||||||
|
- added `:sorted` option to normalization of query strings
|
||||||
|
- fixed issue with normalization of hosts given in `'example.com.'` form
|
||||||
|
|
||||||
|
# Addressable 2.3.5
|
||||||
|
- added Addressable::URI#empty? method
|
||||||
|
- Addressable::URI#hostname methods now strip square brackets from IPv6 hosts
|
||||||
|
- compatibility with Net::HTTP in Ruby 2.0.0
|
||||||
|
- Addressable::URI#route_from should always give relative URIs
|
||||||
|
|
||||||
|
# Addressable 2.3.4
|
||||||
|
- fixed issue with encoding altering its inputs
|
||||||
|
- query string normalization now leaves ';' characters alone
|
||||||
|
- FakeFS is detected before attempting to load unicode tables
|
||||||
|
- additional testing to ensure frozen objects don't cause problems
|
||||||
|
|
||||||
|
# Addressable 2.3.3
|
||||||
|
- fixed issue with converting common primitives during template expansion
|
||||||
|
- fixed port encoding issue
|
||||||
|
- removed a few warnings
|
||||||
|
- normalize should now ignore %2B in query strings
|
||||||
|
- the IDNA logic should now be handled by libidn in Ruby 1.9
|
||||||
|
- no template match should now result in nil instead of an empty MatchData
|
||||||
|
- added license information to gemspec
|
||||||
|
|
||||||
|
# Addressable 2.3.2
|
||||||
|
- added Addressable::URI#default_port method
|
||||||
|
- fixed issue with Marshalling Unicode data on Windows
|
||||||
|
- improved heuristic parsing to better handle IPv4 addresses
|
||||||
|
|
||||||
|
# Addressable 2.3.1
|
||||||
|
- fixed missing unicode data file
|
||||||
|
|
||||||
|
# Addressable 2.3.0
|
||||||
|
- updated Addressable::Template to use RFC 6570, level 4
|
||||||
|
- fixed compatibility problems with some versions of Ruby
|
||||||
|
- moved unicode tables into a data file for performance reasons
|
||||||
|
- removing support for multiple query value notations
|
||||||
|
|
||||||
|
# Addressable 2.2.8
|
||||||
|
- fixed issues with dot segment removal code
|
||||||
|
- form encoding can now handle multiple values per key
|
||||||
|
- updated development environment
|
||||||
|
|
||||||
|
# Addressable 2.2.7
|
||||||
|
- fixed issues related to Addressable::URI#query_values=
|
||||||
|
- the Addressable::URI.parse method is now polymorphic
|
||||||
|
|
||||||
|
# Addressable 2.2.6
|
||||||
|
- changed the way ambiguous paths are handled
|
||||||
|
- fixed bug with frozen URIs
|
||||||
|
- https supported in heuristic parsing
|
||||||
|
|
||||||
|
# Addressable 2.2.5
|
||||||
|
- 'parsing' a pre-parsed URI object is now a dup operation
|
||||||
|
- introduced conditional support for libidn
|
||||||
|
- fixed normalization issue on ampersands in query strings
|
||||||
|
- added additional tests around handling of query strings
|
||||||
|
|
||||||
|
# Addressable 2.2.4
|
||||||
|
- added origin support from draft-ietf-websec-origin-00
|
||||||
|
- resolved issue with attempting to navigate below root
|
||||||
|
- fixed bug with string splitting in query strings
|
||||||
|
|
||||||
|
# Addressable 2.2.3
|
||||||
|
- added :flat_array notation for query strings
|
||||||
|
|
||||||
|
# Addressable 2.2.2
|
||||||
|
- fixed issue with percent escaping of '+' character in query strings
|
||||||
|
|
||||||
|
# Addressable 2.2.1
|
||||||
|
- added support for application/x-www-form-urlencoded.
|
||||||
|
|
||||||
|
# Addressable 2.2.0
|
||||||
|
- added site methods
|
||||||
|
- improved documentation
|
||||||
|
|
||||||
|
# Addressable 2.1.2
|
||||||
|
- added HTTP request URI methods
|
||||||
|
- better handling of Windows file paths
|
||||||
|
- validation_deferred boolean replaced with defer_validation block
|
||||||
|
- normalization of percent-encoded paths should now be correct
|
||||||
|
- fixed issue with constructing URIs with relative paths
|
||||||
|
- fixed warnings
|
||||||
|
|
||||||
|
# Addressable 2.1.1
|
||||||
|
- more type checking changes
|
||||||
|
- fixed issue with unicode normalization
|
||||||
|
- added method to find template defaults
|
||||||
|
- symbolic keys are now allowed in template mappings
|
||||||
|
- numeric values and symbolic values are now allowed in template mappings
|
||||||
|
|
||||||
|
# Addressable 2.1.0
|
||||||
|
- refactored URI template support out into its own class
|
||||||
|
- removed extract method due to being useless and unreliable
|
||||||
|
- removed Addressable::URI.expand_template
|
||||||
|
- removed Addressable::URI#extract_mapping
|
||||||
|
- added partial template expansion
|
||||||
|
- fixed minor bugs in the parse and heuristic_parse methods
|
||||||
|
- fixed incompatibility with Ruby 1.9.1
|
||||||
|
- fixed bottleneck in Addressable::URI#hash and Addressable::URI#to_s
|
||||||
|
- fixed unicode normalization exception
|
||||||
|
- updated query_values methods to better handle subscript notation
|
||||||
|
- worked around issue with freezing URIs
|
||||||
|
- improved specs
|
||||||
|
|
||||||
|
# Addressable 2.0.2
|
||||||
|
- fixed issue with URI template expansion
|
||||||
|
- fixed issue with percent escaping characters 0-15
|
||||||
|
|
||||||
|
# Addressable 2.0.1
|
||||||
|
- fixed issue with query string assignment
|
||||||
|
- fixed issue with improperly encoded components
|
||||||
|
|
||||||
|
# Addressable 2.0.0
|
||||||
|
- the initialize method now takes an options hash as its only parameter
|
||||||
|
- added query_values method to URI class
|
||||||
|
- completely replaced IDNA implementation with pure Ruby
|
||||||
|
- renamed Addressable::ADDRESSABLE_VERSION to Addressable::VERSION
|
||||||
|
- completely reworked the Rakefile
|
||||||
|
- changed the behavior of the port method significantly
|
||||||
|
- Addressable::URI.encode_segment, Addressable::URI.unencode_segment renamed
|
||||||
|
- documentation is now in YARD format
|
||||||
|
- more rigorous type checking
|
||||||
|
- to_str method implemented, implicit conversion to Strings now allowed
|
||||||
|
- Addressable::URI#omit method added, Addressable::URI#merge method replaced
|
||||||
|
- updated URI Template code to match v 03 of the draft spec
|
||||||
|
- added a bunch of new specifications
|
||||||
|
|
||||||
|
# Addressable 1.0.4
|
||||||
|
- switched to using RSpec's pending system for specs that rely on IDN
|
||||||
|
- fixed issue with creating URIs with paths that are not prefixed with '/'
|
||||||
|
|
||||||
|
# Addressable 1.0.3
|
||||||
|
- implemented a hash method
|
||||||
|
|
||||||
|
# Addressable 1.0.2
|
||||||
|
- fixed minor bug with the extract_mapping method
|
||||||
|
|
||||||
|
# Addressable 1.0.1
|
||||||
|
- fixed minor bug with the extract_mapping method
|
||||||
|
|
||||||
|
# Addressable 1.0.0
|
||||||
|
- heuristic parse method added
|
||||||
|
- parsing is slightly more strict
|
||||||
|
- replaced to_h with to_hash
|
||||||
|
- fixed routing methods
|
||||||
|
- improved specifications
|
||||||
|
- improved heckle rake task
|
||||||
|
- no surviving heckle mutations
|
||||||
|
|
||||||
|
# Addressable 0.1.2
|
||||||
|
- improved normalization
|
||||||
|
- fixed bug in joining algorithm
|
||||||
|
- updated specifications
|
||||||
|
|
||||||
|
# Addressable 0.1.1
|
||||||
|
- updated documentation
|
||||||
|
- added URI Template variable extraction
|
||||||
|
|
||||||
|
# Addressable 0.1.0
|
||||||
|
- initial release
|
||||||
|
- implementation based on RFC 3986, 3987
|
||||||
|
- support for IRIs via libidn
|
||||||
|
- support for the URI Template draft spec
|
32
vendor/bundle/gems/addressable-2.7.0/Gemfile
vendored
Normal file
32
vendor/bundle/gems/addressable-2.7.0/Gemfile
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gemspec
|
||||||
|
|
||||||
|
group :test do
|
||||||
|
gem 'rspec', '~> 3.8'
|
||||||
|
gem 'rspec-its', '~> 1.3'
|
||||||
|
end
|
||||||
|
|
||||||
|
group :development do
|
||||||
|
gem 'launchy', '~> 2.4', '>= 2.4.3'
|
||||||
|
gem 'redcarpet', :platform => :mri_19
|
||||||
|
gem 'yard'
|
||||||
|
end
|
||||||
|
|
||||||
|
group :test, :development do
|
||||||
|
gem 'rake', '> 10.0', '< 12'
|
||||||
|
gem 'simplecov', :require => false
|
||||||
|
gem 'coveralls', :require => false, :platforms => [
|
||||||
|
:ruby_20, :ruby_21, :ruby_22, :ruby_23
|
||||||
|
]
|
||||||
|
# Used to test compatibility.
|
||||||
|
gem 'rack-mount', git: 'https://github.com/sporkmonger/rack-mount.git', require: 'rack/mount'
|
||||||
|
|
||||||
|
if RUBY_VERSION.start_with?('2.0', '2.1')
|
||||||
|
gem 'rack', '< 2', :require => false
|
||||||
|
else
|
||||||
|
gem 'rack', :require => false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
gem 'idn-ruby', :platform => [:mri_20, :mri_21, :mri_22, :mri_23, :mri_24]
|
202
vendor/bundle/gems/addressable-2.7.0/LICENSE.txt
vendored
Normal file
202
vendor/bundle/gems/addressable-2.7.0/LICENSE.txt
vendored
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
121
vendor/bundle/gems/addressable-2.7.0/README.md
vendored
Normal file
121
vendor/bundle/gems/addressable-2.7.0/README.md
vendored
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
# Addressable
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Homepage</dt><dd><a href="https://github.com/sporkmonger/addressable">github.com/sporkmonger/addressable</a></dd>
|
||||||
|
<dt>Author</dt><dd><a href="mailto:bob@sporkmonger.com">Bob Aman</a></dd>
|
||||||
|
<dt>Copyright</dt><dd>Copyright © Bob Aman</dd>
|
||||||
|
<dt>License</dt><dd>Apache 2.0</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
[![Gem Version](http://img.shields.io/gem/dt/addressable.svg)][gem]
|
||||||
|
[![Build Status](https://secure.travis-ci.org/sporkmonger/addressable.svg?branch=master)][travis]
|
||||||
|
[![Test Coverage Status](https://img.shields.io/coveralls/sporkmonger/addressable.svg)][coveralls]
|
||||||
|
[![Documentation Coverage Status](http://inch-ci.org/github/sporkmonger/addressable.svg?branch=master)][inch]
|
||||||
|
|
||||||
|
[gem]: https://rubygems.org/gems/addressable
|
||||||
|
[travis]: http://travis-ci.org/sporkmonger/addressable
|
||||||
|
[coveralls]: https://coveralls.io/r/sporkmonger/addressable
|
||||||
|
[inch]: http://inch-ci.org/github/sporkmonger/addressable
|
||||||
|
|
||||||
|
# Description
|
||||||
|
|
||||||
|
Addressable is an alternative implementation to the URI implementation
|
||||||
|
that is part of Ruby's standard library. It is flexible, offers heuristic
|
||||||
|
parsing, and additionally provides extensive support for IRIs and URI templates.
|
||||||
|
|
||||||
|
Addressable closely conforms to RFC 3986, RFC 3987, and RFC 6570 (level 4).
|
||||||
|
|
||||||
|
# Reference
|
||||||
|
|
||||||
|
- {Addressable::URI}
|
||||||
|
- {Addressable::Template}
|
||||||
|
|
||||||
|
# Example usage
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
require "addressable/uri"
|
||||||
|
|
||||||
|
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
|
||||||
|
uri.scheme
|
||||||
|
#=> "http"
|
||||||
|
uri.host
|
||||||
|
#=> "example.com"
|
||||||
|
uri.path
|
||||||
|
#=> "/path/to/resource/"
|
||||||
|
|
||||||
|
uri = Addressable::URI.parse("http://www.詹姆斯.com/")
|
||||||
|
uri.normalize
|
||||||
|
#=> #<Addressable::URI:0xc9a4c8 URI:http://www.xn--8ws00zhy3a.com/>
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# URI Templates
|
||||||
|
|
||||||
|
For more details, see [RFC 6570](https://www.rfc-editor.org/rfc/rfc6570.txt).
|
||||||
|
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
|
||||||
|
require "addressable/template"
|
||||||
|
|
||||||
|
template = Addressable::Template.new("http://example.com/{?query*}")
|
||||||
|
template.expand({
|
||||||
|
"query" => {
|
||||||
|
'foo' => 'bar',
|
||||||
|
'color' => 'red'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
#=> #<Addressable::URI:0xc9d95c URI:http://example.com/?foo=bar&color=red>
|
||||||
|
|
||||||
|
template = Addressable::Template.new("http://example.com/{?one,two,three}")
|
||||||
|
template.partial_expand({"one" => "1", "three" => 3}).pattern
|
||||||
|
#=> "http://example.com/?one=1{&two}&three=3"
|
||||||
|
|
||||||
|
template = Addressable::Template.new(
|
||||||
|
"http://{host}{/segments*}/{?one,two,bogus}{#fragment}"
|
||||||
|
)
|
||||||
|
uri = Addressable::URI.parse(
|
||||||
|
"http://example.com/a/b/c/?one=1&two=2#foo"
|
||||||
|
)
|
||||||
|
template.extract(uri)
|
||||||
|
#=>
|
||||||
|
# {
|
||||||
|
# "host" => "example.com",
|
||||||
|
# "segments" => ["a", "b", "c"],
|
||||||
|
# "one" => "1",
|
||||||
|
# "two" => "2",
|
||||||
|
# "fragment" => "foo"
|
||||||
|
# }
|
||||||
|
```
|
||||||
|
|
||||||
|
# Install
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ gem install addressable
|
||||||
|
```
|
||||||
|
|
||||||
|
You may optionally turn on native IDN support by installing libidn and the
|
||||||
|
idn gem:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ sudo apt-get install idn # Debian/Ubuntu
|
||||||
|
$ brew install libidn # OS X
|
||||||
|
$ gem install idn-ruby
|
||||||
|
```
|
||||||
|
|
||||||
|
# Semantic Versioning
|
||||||
|
|
||||||
|
This project uses [Semantic Versioning](https://semver.org/). You can (and should) specify your
|
||||||
|
dependency using a pessimistic version constraint covering the major and minor
|
||||||
|
values:
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
spec.add_dependency 'addressable', '~> 2.5'
|
||||||
|
```
|
||||||
|
|
||||||
|
If you need a specific bug fix, you can also specify minimum tiny versions
|
||||||
|
without preventing updates to the latest minor release:
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
spec.add_dependency 'addressable', '~> 2.3', '>= 2.3.7'
|
||||||
|
```
|
34
vendor/bundle/gems/addressable-2.7.0/Rakefile
vendored
Normal file
34
vendor/bundle/gems/addressable-2.7.0/Rakefile
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
require 'rake'
|
||||||
|
|
||||||
|
require File.join(File.dirname(__FILE__), 'lib', 'addressable', 'version')
|
||||||
|
|
||||||
|
PKG_DISPLAY_NAME = 'Addressable'
|
||||||
|
PKG_NAME = PKG_DISPLAY_NAME.downcase
|
||||||
|
PKG_VERSION = Addressable::VERSION::STRING
|
||||||
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
||||||
|
|
||||||
|
RELEASE_NAME = "REL #{PKG_VERSION}"
|
||||||
|
|
||||||
|
PKG_SUMMARY = "URI Implementation"
|
||||||
|
PKG_DESCRIPTION = <<-TEXT
|
||||||
|
Addressable is an alternative implementation to the URI implementation that is
|
||||||
|
part of Ruby's standard library. It is flexible, offers heuristic parsing, and
|
||||||
|
additionally provides extensive support for IRIs and URI templates.
|
||||||
|
TEXT
|
||||||
|
|
||||||
|
PKG_FILES = FileList[
|
||||||
|
"lib/**/*", "spec/**/*", "vendor/**/*", "data/**/*",
|
||||||
|
"tasks/**/*",
|
||||||
|
"[A-Z]*", "Rakefile"
|
||||||
|
].exclude(/pkg/).exclude(/database\.yml/).
|
||||||
|
exclude(/Gemfile\.lock/).exclude(/[_\.]git$/)
|
||||||
|
|
||||||
|
task :default => "spec"
|
||||||
|
|
||||||
|
WINDOWS = (RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/) rescue false
|
||||||
|
SUDO = WINDOWS ? '' : ('sudo' unless ENV['SUDOLESS'])
|
||||||
|
|
||||||
|
Dir['tasks/**/*.rake'].each { |rake| load rake }
|
BIN
vendor/bundle/gems/addressable-2.7.0/data/unicode.data
vendored
Normal file
BIN
vendor/bundle/gems/addressable-2.7.0/data/unicode.data
vendored
Normal file
Binary file not shown.
4
vendor/bundle/gems/addressable-2.7.0/lib/addressable.rb
vendored
Normal file
4
vendor/bundle/gems/addressable-2.7.0/lib/addressable.rb
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'addressable/uri'
|
||||||
|
require 'addressable/template'
|
27
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna.rb
vendored
Normal file
27
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna.rb
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# encoding:utf-8
|
||||||
|
#--
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#++
|
||||||
|
|
||||||
|
|
||||||
|
begin
|
||||||
|
require "addressable/idna/native"
|
||||||
|
rescue LoadError
|
||||||
|
# libidn or the idn gem was not available, fall back on a pure-Ruby
|
||||||
|
# implementation...
|
||||||
|
require "addressable/idna/pure"
|
||||||
|
end
|
61
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna/native.rb
vendored
Normal file
61
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna/native.rb
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# encoding:utf-8
|
||||||
|
#--
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#++
|
||||||
|
|
||||||
|
|
||||||
|
require "idn"
|
||||||
|
|
||||||
|
module Addressable
|
||||||
|
module IDNA
|
||||||
|
def self.punycode_encode(value)
|
||||||
|
IDN::Punycode.encode(value.to_s)
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.punycode_decode(value)
|
||||||
|
IDN::Punycode.decode(value.to_s)
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.unicode_normalize_kc(value)
|
||||||
|
IDN::Stringprep.nfkc_normalize(value.to_s)
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.to_ascii(value)
|
||||||
|
value.to_s.split('.', -1).map do |segment|
|
||||||
|
if segment.size > 0 && segment.size < 64
|
||||||
|
IDN::Idna.toASCII(segment, IDN::Idna::ALLOW_UNASSIGNED)
|
||||||
|
elsif segment.size >= 64
|
||||||
|
segment
|
||||||
|
else
|
||||||
|
''
|
||||||
|
end
|
||||||
|
end.join('.')
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.to_unicode(value)
|
||||||
|
value.to_s.split('.', -1).map do |segment|
|
||||||
|
if segment.size > 0 && segment.size < 64
|
||||||
|
IDN::Idna.toUnicode(segment, IDN::Idna::ALLOW_UNASSIGNED)
|
||||||
|
elsif segment.size >= 64
|
||||||
|
segment
|
||||||
|
else
|
||||||
|
''
|
||||||
|
end
|
||||||
|
end.join('.')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
676
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna/pure.rb
vendored
Normal file
676
vendor/bundle/gems/addressable-2.7.0/lib/addressable/idna/pure.rb
vendored
Normal file
@ -0,0 +1,676 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# encoding:utf-8
|
||||||
|
#--
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#++
|
||||||
|
|
||||||
|
|
||||||
|
module Addressable
|
||||||
|
module IDNA
|
||||||
|
# This module is loosely based on idn_actionmailer by Mick Staugaard,
|
||||||
|
# the unicode library by Yoshida Masato, and the punycode implementation
|
||||||
|
# by Kazuhiro Nishiyama. Most of the code was copied verbatim, but
|
||||||
|
# some reformatting was done, and some translation from C was done.
|
||||||
|
#
|
||||||
|
# Without their code to work from as a base, we'd all still be relying
|
||||||
|
# on the presence of libidn. Which nobody ever seems to have installed.
|
||||||
|
#
|
||||||
|
# Original sources:
|
||||||
|
# http://github.com/staugaard/idn_actionmailer
|
||||||
|
# http://www.yoshidam.net/Ruby.html#unicode
|
||||||
|
# http://rubyforge.org/frs/?group_id=2550
|
||||||
|
|
||||||
|
|
||||||
|
UNICODE_TABLE = File.expand_path(
|
||||||
|
File.join(File.dirname(__FILE__), '../../..', 'data/unicode.data')
|
||||||
|
)
|
||||||
|
|
||||||
|
ACE_PREFIX = "xn--"
|
||||||
|
|
||||||
|
UTF8_REGEX = /\A(?:
|
||||||
|
[\x09\x0A\x0D\x20-\x7E] # ASCII
|
||||||
|
| [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
|
||||||
|
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
|
||||||
|
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
|
||||||
|
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
|
||||||
|
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
|
||||||
|
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4nil5
|
||||||
|
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
|
||||||
|
)*\z/mnx
|
||||||
|
|
||||||
|
UTF8_REGEX_MULTIBYTE = /(?:
|
||||||
|
[\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
|
||||||
|
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
|
||||||
|
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
|
||||||
|
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
|
||||||
|
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
|
||||||
|
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4nil5
|
||||||
|
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
|
||||||
|
)/mnx
|
||||||
|
|
||||||
|
# :startdoc:
|
||||||
|
|
||||||
|
# Converts from a Unicode internationalized domain name to an ASCII
|
||||||
|
# domain name as described in RFC 3490.
|
||||||
|
def self.to_ascii(input)
|
||||||
|
input = input.to_s unless input.is_a?(String)
|
||||||
|
input = input.dup
|
||||||
|
if input.respond_to?(:force_encoding)
|
||||||
|
input.force_encoding(Encoding::ASCII_8BIT)
|
||||||
|
end
|
||||||
|
if input =~ UTF8_REGEX && input =~ UTF8_REGEX_MULTIBYTE
|
||||||
|
parts = unicode_downcase(input).split('.')
|
||||||
|
parts.map! do |part|
|
||||||
|
if part.respond_to?(:force_encoding)
|
||||||
|
part.force_encoding(Encoding::ASCII_8BIT)
|
||||||
|
end
|
||||||
|
if part =~ UTF8_REGEX && part =~ UTF8_REGEX_MULTIBYTE
|
||||||
|
ACE_PREFIX + punycode_encode(unicode_normalize_kc(part))
|
||||||
|
else
|
||||||
|
part
|
||||||
|
end
|
||||||
|
end
|
||||||
|
parts.join('.')
|
||||||
|
else
|
||||||
|
input
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Converts from an ASCII domain name to a Unicode internationalized
|
||||||
|
# domain name as described in RFC 3490.
|
||||||
|
def self.to_unicode(input)
|
||||||
|
input = input.to_s unless input.is_a?(String)
|
||||||
|
parts = input.split('.')
|
||||||
|
parts.map! do |part|
|
||||||
|
if part =~ /^#{ACE_PREFIX}(.+)/
|
||||||
|
begin
|
||||||
|
punycode_decode(part[/^#{ACE_PREFIX}(.+)/, 1])
|
||||||
|
rescue Addressable::IDNA::PunycodeBadInput
|
||||||
|
# toUnicode is explicitly defined as never-fails by the spec
|
||||||
|
part
|
||||||
|
end
|
||||||
|
else
|
||||||
|
part
|
||||||
|
end
|
||||||
|
end
|
||||||
|
output = parts.join('.')
|
||||||
|
if output.respond_to?(:force_encoding)
|
||||||
|
output.force_encoding(Encoding::UTF_8)
|
||||||
|
end
|
||||||
|
output
|
||||||
|
end
|
||||||
|
|
||||||
|
# Unicode normalization form KC.
|
||||||
|
def self.unicode_normalize_kc(input)
|
||||||
|
input = input.to_s unless input.is_a?(String)
|
||||||
|
unpacked = input.unpack("U*")
|
||||||
|
unpacked =
|
||||||
|
unicode_compose(unicode_sort_canonical(unicode_decompose(unpacked)))
|
||||||
|
return unpacked.pack("U*")
|
||||||
|
end
|
||||||
|
|
||||||
|
##
|
||||||
|
# Unicode aware downcase method.
|
||||||
|
#
|
||||||
|
# @api private
|
||||||
|
# @param [String] input
|
||||||
|
# The input string.
|
||||||
|
# @return [String] The downcased result.
|
||||||
|
def self.unicode_downcase(input)
|
||||||
|
input = input.to_s unless input.is_a?(String)
|
||||||
|
unpacked = input.unpack("U*")
|
||||||
|
unpacked.map! { |codepoint| lookup_unicode_lowercase(codepoint) }
|
||||||
|
return unpacked.pack("U*")
|
||||||
|
end
|
||||||
|
private_class_method :unicode_downcase
|
||||||
|
|
||||||
|
def self.unicode_compose(unpacked)
|
||||||
|
unpacked_result = []
|
||||||
|
length = unpacked.length
|
||||||
|
|
||||||
|
return unpacked if length == 0
|
||||||
|
|
||||||
|
starter = unpacked[0]
|
||||||
|
starter_cc = lookup_unicode_combining_class(starter)
|
||||||
|
starter_cc = 256 if starter_cc != 0
|
||||||
|
for i in 1...length
|
||||||
|
ch = unpacked[i]
|
||||||
|
|
||||||
|
if (starter_cc == 0 &&
|
||||||
|
(composite = unicode_compose_pair(starter, ch)) != nil)
|
||||||
|
starter = composite
|
||||||
|
else
|
||||||
|
unpacked_result << starter
|
||||||
|
starter = ch
|
||||||
|
end
|
||||||
|
end
|
||||||
|
unpacked_result << starter
|
||||||
|
return unpacked_result
|
||||||
|
end
|
||||||
|
private_class_method :unicode_compose
|
||||||
|
|
||||||
|
def self.unicode_compose_pair(ch_one, ch_two)
|
||||||
|
if ch_one >= HANGUL_LBASE && ch_one < HANGUL_LBASE + HANGUL_LCOUNT &&
|
||||||
|
ch_two >= HANGUL_VBASE && ch_two < HANGUL_VBASE + HANGUL_VCOUNT
|
||||||
|
# Hangul L + V
|
||||||
|
return HANGUL_SBASE + (
|
||||||
|
(ch_one - HANGUL_LBASE) * HANGUL_VCOUNT + (ch_two - HANGUL_VBASE)
|
||||||
|
) * HANGUL_TCOUNT
|
||||||
|
elsif ch_one >= HANGUL_SBASE &&
|
||||||
|
ch_one < HANGUL_SBASE + HANGUL_SCOUNT &&
|
||||||
|
(ch_one - HANGUL_SBASE) % HANGUL_TCOUNT == 0 &&
|
||||||
|
ch_two >= HANGUL_TBASE && ch_two < HANGUL_TBASE + HANGUL_TCOUNT
|
||||||
|
# Hangul LV + T
|
||||||
|
return ch_one + (ch_two - HANGUL_TBASE)
|
||||||
|
end
|
||||||
|
|
||||||
|
p = []
|
||||||
|
ucs4_to_utf8 = lambda do |ch|
|
||||||
|
if ch < 128
|
||||||
|
p << ch
|
||||||
|
elsif ch < 2048
|
||||||
|
p << (ch >> 6 | 192)
|
||||||
|
p << (ch & 63 | 128)
|
||||||
|
elsif ch < 0x10000
|
||||||
|
p << (ch >> 12 | 224)
|
||||||
|
p << (ch >> 6 & 63 | 128)
|
||||||
|
p << (ch & 63 | 128)
|
||||||
|
elsif ch < 0x200000
|
||||||
|
p << (ch >> 18 | 240)
|
||||||
|
p << (ch >> 12 & 63 | 128)
|
||||||
|
p << (ch >> 6 & 63 | 128)
|
||||||
|
p << (ch & 63 | 128)
|
||||||
|
elsif ch < 0x4000000
|
||||||
|
p << (ch >> 24 | 248)
|
||||||
|
p << (ch >> 18 & 63 | 128)
|
||||||
|
p << (ch >> 12 & 63 | 128)
|
||||||
|
p << (ch >> 6 & 63 | 128)
|
||||||
|
p << (ch & 63 | 128)
|
||||||
|
elsif ch < 0x80000000
|
||||||
|
p << (ch >> 30 | 252)
|
||||||
|
p << (ch >> 24 & 63 | 128)
|
||||||
|
p << (ch >> 18 & 63 | 128)
|
||||||
|
p << (ch >> 12 & 63 | 128)
|
||||||
|
p << (ch >> 6 & 63 | 128)
|
||||||
|
p << (ch & 63 | 128)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
ucs4_to_utf8.call(ch_one)
|
||||||
|
ucs4_to_utf8.call(ch_two)
|
||||||
|
|
||||||
|
return lookup_unicode_composition(p)
|
||||||
|
end
|
||||||
|
private_class_method :unicode_compose_pair
|
||||||
|
|
||||||
|
def self.unicode_sort_canonical(unpacked)
|
||||||
|
unpacked = unpacked.dup
|
||||||
|
i = 1
|
||||||
|
length = unpacked.length
|
||||||
|
|
||||||
|
return unpacked if length < 2
|
||||||
|
|
||||||
|
while i < length
|
||||||
|
last = unpacked[i-1]
|
||||||
|
ch = unpacked[i]
|
||||||
|
last_cc = lookup_unicode_combining_class(last)
|
||||||
|
cc = lookup_unicode_combining_class(ch)
|
||||||
|
if cc != 0 && last_cc != 0 && last_cc > cc
|
||||||
|
unpacked[i] = last
|
||||||
|
unpacked[i-1] = ch
|
||||||
|
i -= 1 if i > 1
|
||||||
|
else
|
||||||
|
i += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return unpacked
|
||||||
|
end
|
||||||
|
private_class_method :unicode_sort_canonical
|
||||||
|
|
||||||
|
def self.unicode_decompose(unpacked)
|
||||||
|
unpacked_result = []
|
||||||
|
for cp in unpacked
|
||||||
|
if cp >= HANGUL_SBASE && cp < HANGUL_SBASE + HANGUL_SCOUNT
|
||||||
|
l, v, t = unicode_decompose_hangul(cp)
|
||||||
|
unpacked_result << l
|
||||||
|
unpacked_result << v if v
|
||||||
|
unpacked_result << t if t
|
||||||
|
else
|
||||||
|
dc = lookup_unicode_compatibility(cp)
|
||||||
|
unless dc
|
||||||
|
unpacked_result << cp
|
||||||
|
else
|
||||||
|
unpacked_result.concat(unicode_decompose(dc.unpack("U*")))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return unpacked_result
|
||||||
|
end
|
||||||
|
private_class_method :unicode_decompose
|
||||||
|
|
||||||
|
def self.unicode_decompose_hangul(codepoint)
|
||||||
|
sindex = codepoint - HANGUL_SBASE;
|
||||||
|
if sindex < 0 || sindex >= HANGUL_SCOUNT
|
||||||
|
l = codepoint
|
||||||
|
v = t = nil
|
||||||
|
return l, v, t
|
||||||
|
end
|
||||||
|
l = HANGUL_LBASE + sindex / HANGUL_NCOUNT
|
||||||
|
v = HANGUL_VBASE + (sindex % HANGUL_NCOUNT) / HANGUL_TCOUNT
|
||||||
|
t = HANGUL_TBASE + sindex % HANGUL_TCOUNT
|
||||||
|
if t == HANGUL_TBASE
|
||||||
|
t = nil
|
||||||
|
end
|
||||||
|
return l, v, t
|
||||||
|
end
|
||||||
|
private_class_method :unicode_decompose_hangul
|
||||||
|
|
||||||
|
def self.lookup_unicode_combining_class(codepoint)
|
||||||
|
codepoint_data = UNICODE_DATA[codepoint]
|
||||||
|
(codepoint_data ?
|
||||||
|
(codepoint_data[UNICODE_DATA_COMBINING_CLASS] || 0) :
|
||||||
|
0)
|
||||||
|
end
|
||||||
|
private_class_method :lookup_unicode_combining_class
|
||||||
|
|
||||||
|
def self.lookup_unicode_compatibility(codepoint)
|
||||||
|
codepoint_data = UNICODE_DATA[codepoint]
|
||||||
|
(codepoint_data ?
|
||||||
|
codepoint_data[UNICODE_DATA_COMPATIBILITY] : nil)
|
||||||
|
end
|
||||||
|
private_class_method :lookup_unicode_compatibility
|
||||||
|
|
||||||
|
def self.lookup_unicode_lowercase(codepoint)
|
||||||
|
codepoint_data = UNICODE_DATA[codepoint]
|
||||||
|
(codepoint_data ?
|
||||||
|
(codepoint_data[UNICODE_DATA_LOWERCASE] || codepoint) :
|
||||||
|
codepoint)
|
||||||
|
end
|
||||||
|
private_class_method :lookup_unicode_lowercase
|
||||||
|
|
||||||
|
def self.lookup_unicode_composition(unpacked)
|
||||||
|
return COMPOSITION_TABLE[unpacked]
|
||||||
|
end
|
||||||
|
private_class_method :lookup_unicode_composition
|
||||||
|
|
||||||
|
HANGUL_SBASE = 0xac00
|
||||||
|
HANGUL_LBASE = 0x1100
|
||||||
|
HANGUL_LCOUNT = 19
|
||||||
|
HANGUL_VBASE = 0x1161
|
||||||
|
HANGUL_VCOUNT = 21
|
||||||
|
HANGUL_TBASE = 0x11a7
|
||||||
|
HANGUL_TCOUNT = 28
|
||||||
|
HANGUL_NCOUNT = HANGUL_VCOUNT * HANGUL_TCOUNT # 588
|
||||||
|
HANGUL_SCOUNT = HANGUL_LCOUNT * HANGUL_NCOUNT # 11172
|
||||||
|
|
||||||
|
UNICODE_DATA_COMBINING_CLASS = 0
|
||||||
|
UNICODE_DATA_EXCLUSION = 1
|
||||||
|
UNICODE_DATA_CANONICAL = 2
|
||||||
|
UNICODE_DATA_COMPATIBILITY = 3
|
||||||
|
UNICODE_DATA_UPPERCASE = 4
|
||||||
|
UNICODE_DATA_LOWERCASE = 5
|
||||||
|
UNICODE_DATA_TITLECASE = 6
|
||||||
|
|
||||||
|
begin
|
||||||
|
if defined?(FakeFS)
|
||||||
|
fakefs_state = FakeFS.activated?
|
||||||
|
FakeFS.deactivate!
|
||||||
|
end
|
||||||
|
# This is a sparse Unicode table. Codepoints without entries are
|
||||||
|
# assumed to have the value: [0, 0, nil, nil, nil, nil, nil]
|
||||||
|
UNICODE_DATA = File.open(UNICODE_TABLE, "rb") do |file|
|
||||||
|
Marshal.load(file.read)
|
||||||
|
end
|
||||||
|
ensure
|
||||||
|
if defined?(FakeFS)
|
||||||
|
FakeFS.activate! if fakefs_state
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
COMPOSITION_TABLE = {}
|
||||||
|
UNICODE_DATA.each do |codepoint, data|
|
||||||
|
canonical = data[UNICODE_DATA_CANONICAL]
|
||||||
|
exclusion = data[UNICODE_DATA_EXCLUSION]
|
||||||
|
|
||||||
|
if canonical && exclusion == 0
|
||||||
|
COMPOSITION_TABLE[canonical.unpack("C*")] = codepoint
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
UNICODE_MAX_LENGTH = 256
|
||||||
|
ACE_MAX_LENGTH = 256
|
||||||
|
|
||||||
|
PUNYCODE_BASE = 36
|
||||||
|
PUNYCODE_TMIN = 1
|
||||||
|
PUNYCODE_TMAX = 26
|
||||||
|
PUNYCODE_SKEW = 38
|
||||||
|
PUNYCODE_DAMP = 700
|
||||||
|
PUNYCODE_INITIAL_BIAS = 72
|
||||||
|
PUNYCODE_INITIAL_N = 0x80
|
||||||
|
PUNYCODE_DELIMITER = 0x2D
|
||||||
|
|
||||||
|
PUNYCODE_MAXINT = 1 << 64
|
||||||
|
|
||||||
|
PUNYCODE_PRINT_ASCII =
|
||||||
|
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" +
|
||||||
|
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" +
|
||||||
|
" !\"\#$%&'()*+,-./" +
|
||||||
|
"0123456789:;<=>?" +
|
||||||
|
"@ABCDEFGHIJKLMNO" +
|
||||||
|
"PQRSTUVWXYZ[\\]^_" +
|
||||||
|
"`abcdefghijklmno" +
|
||||||
|
"pqrstuvwxyz{|}~\n"
|
||||||
|
|
||||||
|
# Input is invalid.
|
||||||
|
class PunycodeBadInput < StandardError; end
|
||||||
|
# Output would exceed the space provided.
|
||||||
|
class PunycodeBigOutput < StandardError; end
|
||||||
|
# Input needs wider integers to process.
|
||||||
|
class PunycodeOverflow < StandardError; end
|
||||||
|
|
||||||
|
def self.punycode_encode(unicode)
|
||||||
|
unicode = unicode.to_s unless unicode.is_a?(String)
|
||||||
|
input = unicode.unpack("U*")
|
||||||
|
output = [0] * (ACE_MAX_LENGTH + 1)
|
||||||
|
input_length = input.size
|
||||||
|
output_length = [ACE_MAX_LENGTH]
|
||||||
|
|
||||||
|
# Initialize the state
|
||||||
|
n = PUNYCODE_INITIAL_N
|
||||||
|
delta = out = 0
|
||||||
|
max_out = output_length[0]
|
||||||
|
bias = PUNYCODE_INITIAL_BIAS
|
||||||
|
|
||||||
|
# Handle the basic code points:
|
||||||
|
input_length.times do |j|
|
||||||
|
if punycode_basic?(input[j])
|
||||||
|
if max_out - out < 2
|
||||||
|
raise PunycodeBigOutput,
|
||||||
|
"Output would exceed the space provided."
|
||||||
|
end
|
||||||
|
output[out] = input[j]
|
||||||
|
out += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
h = b = out
|
||||||
|
|
||||||
|
# h is the number of code points that have been handled, b is the
|
||||||
|
# number of basic code points, and out is the number of characters
|
||||||
|
# that have been output.
|
||||||
|
|
||||||
|
if b > 0
|
||||||
|
output[out] = PUNYCODE_DELIMITER
|
||||||
|
out += 1
|
||||||
|
end
|
||||||
|
|
||||||
|
# Main encoding loop:
|
||||||
|
|
||||||
|
while h < input_length
|
||||||
|
# All non-basic code points < n have been
|
||||||
|
# handled already. Find the next larger one:
|
||||||
|
|
||||||
|
m = PUNYCODE_MAXINT
|
||||||
|
input_length.times do |j|
|
||||||
|
m = input[j] if (n...m) === input[j]
|
||||||
|
end
|
||||||
|
|
||||||
|
# Increase delta enough to advance the decoder's
|
||||||
|
# <n,i> state to <m,0>, but guard against overflow:
|
||||||
|
|
||||||
|
if m - n > (PUNYCODE_MAXINT - delta) / (h + 1)
|
||||||
|
raise PunycodeOverflow, "Input needs wider integers to process."
|
||||||
|
end
|
||||||
|
delta += (m - n) * (h + 1)
|
||||||
|
n = m
|
||||||
|
|
||||||
|
input_length.times do |j|
|
||||||
|
# Punycode does not need to check whether input[j] is basic:
|
||||||
|
if input[j] < n
|
||||||
|
delta += 1
|
||||||
|
if delta == 0
|
||||||
|
raise PunycodeOverflow,
|
||||||
|
"Input needs wider integers to process."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if input[j] == n
|
||||||
|
# Represent delta as a generalized variable-length integer:
|
||||||
|
|
||||||
|
q = delta; k = PUNYCODE_BASE
|
||||||
|
while true
|
||||||
|
if out >= max_out
|
||||||
|
raise PunycodeBigOutput,
|
||||||
|
"Output would exceed the space provided."
|
||||||
|
end
|
||||||
|
t = (
|
||||||
|
if k <= bias
|
||||||
|
PUNYCODE_TMIN
|
||||||
|
elsif k >= bias + PUNYCODE_TMAX
|
||||||
|
PUNYCODE_TMAX
|
||||||
|
else
|
||||||
|
k - bias
|
||||||
|
end
|
||||||
|
)
|
||||||
|
break if q < t
|
||||||
|
output[out] =
|
||||||
|
punycode_encode_digit(t + (q - t) % (PUNYCODE_BASE - t))
|
||||||
|
out += 1
|
||||||
|
q = (q - t) / (PUNYCODE_BASE - t)
|
||||||
|
k += PUNYCODE_BASE
|
||||||
|
end
|
||||||
|
|
||||||
|
output[out] = punycode_encode_digit(q)
|
||||||
|
out += 1
|
||||||
|
bias = punycode_adapt(delta, h + 1, h == b)
|
||||||
|
delta = 0
|
||||||
|
h += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
delta += 1
|
||||||
|
n += 1
|
||||||
|
end
|
||||||
|
|
||||||
|
output_length[0] = out
|
||||||
|
|
||||||
|
outlen = out
|
||||||
|
outlen.times do |j|
|
||||||
|
c = output[j]
|
||||||
|
unless c >= 0 && c <= 127
|
||||||
|
raise StandardError, "Invalid output char."
|
||||||
|
end
|
||||||
|
unless PUNYCODE_PRINT_ASCII[c]
|
||||||
|
raise PunycodeBadInput, "Input is invalid."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
output[0..outlen].map { |x| x.chr }.join("").sub(/\0+\z/, "")
|
||||||
|
end
|
||||||
|
private_class_method :punycode_encode
|
||||||
|
|
||||||
|
def self.punycode_decode(punycode)
|
||||||
|
input = []
|
||||||
|
output = []
|
||||||
|
|
||||||
|
if ACE_MAX_LENGTH * 2 < punycode.size
|
||||||
|
raise PunycodeBigOutput, "Output would exceed the space provided."
|
||||||
|
end
|
||||||
|
punycode.each_byte do |c|
|
||||||
|
unless c >= 0 && c <= 127
|
||||||
|
raise PunycodeBadInput, "Input is invalid."
|
||||||
|
end
|
||||||
|
input.push(c)
|
||||||
|
end
|
||||||
|
|
||||||
|
input_length = input.length
|
||||||
|
output_length = [UNICODE_MAX_LENGTH]
|
||||||
|
|
||||||
|
# Initialize the state
|
||||||
|
n = PUNYCODE_INITIAL_N
|
||||||
|
|
||||||
|
out = i = 0
|
||||||
|
max_out = output_length[0]
|
||||||
|
bias = PUNYCODE_INITIAL_BIAS
|
||||||
|
|
||||||
|
# Handle the basic code points: Let b be the number of input code
|
||||||
|
# points before the last delimiter, or 0 if there is none, then
|
||||||
|
# copy the first b code points to the output.
|
||||||
|
|
||||||
|
b = 0
|
||||||
|
input_length.times do |j|
|
||||||
|
b = j if punycode_delimiter?(input[j])
|
||||||
|
end
|
||||||
|
if b > max_out
|
||||||
|
raise PunycodeBigOutput, "Output would exceed the space provided."
|
||||||
|
end
|
||||||
|
|
||||||
|
b.times do |j|
|
||||||
|
unless punycode_basic?(input[j])
|
||||||
|
raise PunycodeBadInput, "Input is invalid."
|
||||||
|
end
|
||||||
|
output[out] = input[j]
|
||||||
|
out+=1
|
||||||
|
end
|
||||||
|
|
||||||
|
# Main decoding loop: Start just after the last delimiter if any
|
||||||
|
# basic code points were copied; start at the beginning otherwise.
|
||||||
|
|
||||||
|
in_ = b > 0 ? b + 1 : 0
|
||||||
|
while in_ < input_length
|
||||||
|
|
||||||
|
# in_ is the index of the next character to be consumed, and
|
||||||
|
# out is the number of code points in the output array.
|
||||||
|
|
||||||
|
# Decode a generalized variable-length integer into delta,
|
||||||
|
# which gets added to i. The overflow checking is easier
|
||||||
|
# if we increase i as we go, then subtract off its starting
|
||||||
|
# value at the end to obtain delta.
|
||||||
|
|
||||||
|
oldi = i; w = 1; k = PUNYCODE_BASE
|
||||||
|
while true
|
||||||
|
if in_ >= input_length
|
||||||
|
raise PunycodeBadInput, "Input is invalid."
|
||||||
|
end
|
||||||
|
digit = punycode_decode_digit(input[in_])
|
||||||
|
in_+=1
|
||||||
|
if digit >= PUNYCODE_BASE
|
||||||
|
raise PunycodeBadInput, "Input is invalid."
|
||||||
|
end
|
||||||
|
if digit > (PUNYCODE_MAXINT - i) / w
|
||||||
|
raise PunycodeOverflow, "Input needs wider integers to process."
|
||||||
|
end
|
||||||
|
i += digit * w
|
||||||
|
t = (
|
||||||
|
if k <= bias
|
||||||
|
PUNYCODE_TMIN
|
||||||
|
elsif k >= bias + PUNYCODE_TMAX
|
||||||
|
PUNYCODE_TMAX
|
||||||
|
else
|
||||||
|
k - bias
|
||||||
|
end
|
||||||
|
)
|
||||||
|
break if digit < t
|
||||||
|
if w > PUNYCODE_MAXINT / (PUNYCODE_BASE - t)
|
||||||
|
raise PunycodeOverflow, "Input needs wider integers to process."
|
||||||
|
end
|
||||||
|
w *= PUNYCODE_BASE - t
|
||||||
|
k += PUNYCODE_BASE
|
||||||
|
end
|
||||||
|
|
||||||
|
bias = punycode_adapt(i - oldi, out + 1, oldi == 0)
|
||||||
|
|
||||||
|
# I was supposed to wrap around from out + 1 to 0,
|
||||||
|
# incrementing n each time, so we'll fix that now:
|
||||||
|
|
||||||
|
if i / (out + 1) > PUNYCODE_MAXINT - n
|
||||||
|
raise PunycodeOverflow, "Input needs wider integers to process."
|
||||||
|
end
|
||||||
|
n += i / (out + 1)
|
||||||
|
i %= out + 1
|
||||||
|
|
||||||
|
# Insert n at position i of the output:
|
||||||
|
|
||||||
|
# not needed for Punycode:
|
||||||
|
# raise PUNYCODE_INVALID_INPUT if decode_digit(n) <= base
|
||||||
|
if out >= max_out
|
||||||
|
raise PunycodeBigOutput, "Output would exceed the space provided."
|
||||||
|
end
|
||||||
|
|
||||||
|
#memmove(output + i + 1, output + i, (out - i) * sizeof *output)
|
||||||
|
output[i + 1, out - i] = output[i, out - i]
|
||||||
|
output[i] = n
|
||||||
|
i += 1
|
||||||
|
|
||||||
|
out += 1
|
||||||
|
end
|
||||||
|
|
||||||
|
output_length[0] = out
|
||||||
|
|
||||||
|
output.pack("U*")
|
||||||
|
end
|
||||||
|
private_class_method :punycode_decode
|
||||||
|
|
||||||
|
def self.punycode_basic?(codepoint)
|
||||||
|
codepoint < 0x80
|
||||||
|
end
|
||||||
|
private_class_method :punycode_basic?
|
||||||
|
|
||||||
|
def self.punycode_delimiter?(codepoint)
|
||||||
|
codepoint == PUNYCODE_DELIMITER
|
||||||
|
end
|
||||||
|
private_class_method :punycode_delimiter?
|
||||||
|
|
||||||
|
def self.punycode_encode_digit(d)
|
||||||
|
d + 22 + 75 * ((d < 26) ? 1 : 0)
|
||||||
|
end
|
||||||
|
private_class_method :punycode_encode_digit
|
||||||
|
|
||||||
|
# Returns the numeric value of a basic codepoint
|
||||||
|
# (for use in representing integers) in the range 0 to
|
||||||
|
# base - 1, or PUNYCODE_BASE if codepoint does not represent a value.
|
||||||
|
def self.punycode_decode_digit(codepoint)
|
||||||
|
if codepoint - 48 < 10
|
||||||
|
codepoint - 22
|
||||||
|
elsif codepoint - 65 < 26
|
||||||
|
codepoint - 65
|
||||||
|
elsif codepoint - 97 < 26
|
||||||
|
codepoint - 97
|
||||||
|
else
|
||||||
|
PUNYCODE_BASE
|
||||||
|
end
|
||||||
|
end
|
||||||
|
private_class_method :punycode_decode_digit
|
||||||
|
|
||||||
|
# Bias adaptation method
|
||||||
|
def self.punycode_adapt(delta, numpoints, firsttime)
|
||||||
|
delta = firsttime ? delta / PUNYCODE_DAMP : delta >> 1
|
||||||
|
# delta >> 1 is a faster way of doing delta / 2
|
||||||
|
delta += delta / numpoints
|
||||||
|
difference = PUNYCODE_BASE - PUNYCODE_TMIN
|
||||||
|
|
||||||
|
k = 0
|
||||||
|
while delta > (difference * PUNYCODE_TMAX) / 2
|
||||||
|
delta /= difference
|
||||||
|
k += PUNYCODE_BASE
|
||||||
|
end
|
||||||
|
|
||||||
|
k + (difference + 1) * delta / (delta + PUNYCODE_SKEW)
|
||||||
|
end
|
||||||
|
private_class_method :punycode_adapt
|
||||||
|
end
|
||||||
|
# :startdoc:
|
||||||
|
end
|
1045
vendor/bundle/gems/addressable-2.7.0/lib/addressable/template.rb
vendored
Normal file
1045
vendor/bundle/gems/addressable-2.7.0/lib/addressable/template.rb
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2529
vendor/bundle/gems/addressable-2.7.0/lib/addressable/uri.rb
vendored
Normal file
2529
vendor/bundle/gems/addressable-2.7.0/lib/addressable/uri.rb
vendored
Normal file
File diff suppressed because it is too large
Load Diff
32
vendor/bundle/gems/addressable-2.7.0/lib/addressable/version.rb
vendored
Normal file
32
vendor/bundle/gems/addressable-2.7.0/lib/addressable/version.rb
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# encoding:utf-8
|
||||||
|
#--
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#++
|
||||||
|
|
||||||
|
|
||||||
|
# Used to prevent the class/module from being loaded more than once
|
||||||
|
if !defined?(Addressable::VERSION)
|
||||||
|
module Addressable
|
||||||
|
module VERSION
|
||||||
|
MAJOR = 2
|
||||||
|
MINOR = 7
|
||||||
|
TINY = 0
|
||||||
|
|
||||||
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
300
vendor/bundle/gems/addressable-2.7.0/spec/addressable/idna_spec.rb
vendored
Normal file
300
vendor/bundle/gems/addressable-2.7.0/spec/addressable/idna_spec.rb
vendored
Normal file
@ -0,0 +1,300 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# coding: utf-8
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
|
require "spec_helper"
|
||||||
|
|
||||||
|
# Have to use RubyGems to load the idn gem.
|
||||||
|
require "rubygems"
|
||||||
|
|
||||||
|
require "addressable/idna"
|
||||||
|
|
||||||
|
shared_examples_for "converting from unicode to ASCII" do
|
||||||
|
it "should convert 'www.google.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii("www.google.com")).to eq("www.google.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
long = 'AcinusFallumTrompetumNullunCreditumVisumEstAtCuadLongumEtCefallum.com'
|
||||||
|
it "should convert '#{long}' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(long)).to eq(long)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.詹姆斯.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"www.詹姆斯.com"
|
||||||
|
)).to eq("www.xn--8ws00zhy3a.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.Iñtërnâtiônàlizætiøn.com' correctly" do
|
||||||
|
"www.Iñtërnâtiônàlizætiøn.com"
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"www.I\xC3\xB1t\xC3\xABrn\xC3\xA2ti\xC3\xB4" +
|
||||||
|
"n\xC3\xA0liz\xC3\xA6ti\xC3\xB8n.com"
|
||||||
|
)).to eq("www.xn--itrntinliztin-vdb0a5exd8ewcye.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.Iñtërnâtiônàlizætiøn.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"www.In\xCC\x83te\xCC\x88rna\xCC\x82tio\xCC\x82n" +
|
||||||
|
"a\xCC\x80liz\xC3\xA6ti\xC3\xB8n.com"
|
||||||
|
)).to eq("www.xn--itrntinliztin-vdb0a5exd8ewcye.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert " +
|
||||||
|
"'www.ほんとうにながいわけのわからないどめいんめいのらべるまだながくしないとたりない.w3.mag.keio.ac.jp' " +
|
||||||
|
"correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"www.\343\201\273\343\202\223\343\201\250\343\201\206\343\201\253\343" +
|
||||||
|
"\201\252\343\201\214\343\201\204\343\202\217\343\201\221\343\201\256" +
|
||||||
|
"\343\202\217\343\201\213\343\202\211\343\201\252\343\201\204\343\201" +
|
||||||
|
"\251\343\202\201\343\201\204\343\202\223\343\202\201\343\201\204\343" +
|
||||||
|
"\201\256\343\202\211\343\201\271\343\202\213\343\201\276\343\201\240" +
|
||||||
|
"\343\201\252\343\201\214\343\201\217\343\201\227\343\201\252\343\201" +
|
||||||
|
"\204\343\201\250\343\201\237\343\202\212\343\201\252\343\201\204." +
|
||||||
|
"w3.mag.keio.ac.jp"
|
||||||
|
)).to eq(
|
||||||
|
"www.xn--n8jaaaaai5bhf7as8fsfk3jnknefdde3" +
|
||||||
|
"fg11amb5gzdb4wi9bya3kc6lra.w3.mag.keio.ac.jp"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert " +
|
||||||
|
"'www.ほんとうにながいわけのわからないどめいんめいのらべるまだながくしないとたりない.w3.mag.keio.ac.jp' " +
|
||||||
|
"correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"www.\343\201\273\343\202\223\343\201\250\343\201\206\343\201\253\343" +
|
||||||
|
"\201\252\343\201\213\343\202\231\343\201\204\343\202\217\343\201\221" +
|
||||||
|
"\343\201\256\343\202\217\343\201\213\343\202\211\343\201\252\343\201" +
|
||||||
|
"\204\343\201\250\343\202\231\343\202\201\343\201\204\343\202\223\343" +
|
||||||
|
"\202\201\343\201\204\343\201\256\343\202\211\343\201\270\343\202\231" +
|
||||||
|
"\343\202\213\343\201\276\343\201\237\343\202\231\343\201\252\343\201" +
|
||||||
|
"\213\343\202\231\343\201\217\343\201\227\343\201\252\343\201\204\343" +
|
||||||
|
"\201\250\343\201\237\343\202\212\343\201\252\343\201\204." +
|
||||||
|
"w3.mag.keio.ac.jp"
|
||||||
|
)).to eq(
|
||||||
|
"www.xn--n8jaaaaai5bhf7as8fsfk3jnknefdde3" +
|
||||||
|
"fg11amb5gzdb4wi9bya3kc6lra.w3.mag.keio.ac.jp"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '点心和烤鸭.w3.mag.keio.ac.jp' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"点心和烤鸭.w3.mag.keio.ac.jp"
|
||||||
|
)).to eq("xn--0trv4xfvn8el34t.w3.mag.keio.ac.jp")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '가각갂갃간갅갆갇갈갉힢힣.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"가각갂갃간갅갆갇갈갉힢힣.com"
|
||||||
|
)).to eq("xn--o39acdefghijk5883jma.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert " +
|
||||||
|
"'\347\242\274\346\250\231\346\272\226\350" +
|
||||||
|
"\220\254\345\234\213\347\242\274.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\347\242\274\346\250\231\346\272\226\350" +
|
||||||
|
"\220\254\345\234\213\347\242\274.com"
|
||||||
|
)).to eq("xn--9cs565brid46mda086o.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'リ宠퐱〹.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\357\276\230\345\256\240\355\220\261\343\200\271.com"
|
||||||
|
)).to eq("xn--eek174hoxfpr4k.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'リ宠퐱卄.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\343\203\252\345\256\240\355\220\261\345\215\204.com"
|
||||||
|
)).to eq("xn--eek174hoxfpr4k.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'ᆵ' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\341\206\265"
|
||||||
|
)).to eq("xn--4ud")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'ᆵ' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\357\276\257"
|
||||||
|
)).to eq("xn--4ud")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '🌹🌹🌹.ws' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"\360\237\214\271\360\237\214\271\360\237\214\271.ws"
|
||||||
|
)).to eq("xn--2h8haa.ws")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should handle two adjacent '.'s correctly" do
|
||||||
|
expect(Addressable::IDNA.to_ascii(
|
||||||
|
"example..host"
|
||||||
|
)).to eq("example..host")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
shared_examples_for "converting from ASCII to unicode" do
|
||||||
|
long = 'AcinusFallumTrompetumNullunCreditumVisumEstAtCuadLongumEtCefallum.com'
|
||||||
|
it "should convert '#{long}' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(long)).to eq(long)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should return the identity conversion when punycode decode fails" do
|
||||||
|
expect(Addressable::IDNA.to_unicode("xn--zckp1cyg1.sblo.jp")).to eq(
|
||||||
|
"xn--zckp1cyg1.sblo.jp")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should return the identity conversion when the ACE prefix has no suffix" do
|
||||||
|
expect(Addressable::IDNA.to_unicode("xn--...-")).to eq("xn--...-")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.google.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode("www.google.com")).to eq(
|
||||||
|
"www.google.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.詹姆斯.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"www.xn--8ws00zhy3a.com"
|
||||||
|
)).to eq("www.詹姆斯.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '詹姆斯.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--8ws00zhy3a.com"
|
||||||
|
)).to eq("詹姆斯.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'www.iñtërnâtiônàlizætiøn.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"www.xn--itrntinliztin-vdb0a5exd8ewcye.com"
|
||||||
|
)).to eq("www.iñtërnâtiônàlizætiøn.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'iñtërnâtiônàlizætiøn.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--itrntinliztin-vdb0a5exd8ewcye.com"
|
||||||
|
)).to eq("iñtërnâtiônàlizætiøn.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert " +
|
||||||
|
"'www.ほんとうにながいわけのわからないどめいんめいのらべるまだながくしないとたりない.w3.mag.keio.ac.jp' " +
|
||||||
|
"correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"www.xn--n8jaaaaai5bhf7as8fsfk3jnknefdde3" +
|
||||||
|
"fg11amb5gzdb4wi9bya3kc6lra.w3.mag.keio.ac.jp"
|
||||||
|
)).to eq(
|
||||||
|
"www.ほんとうにながいわけのわからないどめいんめいのらべるまだながくしないとたりない.w3.mag.keio.ac.jp"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '点心和烤鸭.w3.mag.keio.ac.jp' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--0trv4xfvn8el34t.w3.mag.keio.ac.jp"
|
||||||
|
)).to eq("点心和烤鸭.w3.mag.keio.ac.jp")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '가각갂갃간갅갆갇갈갉힢힣.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--o39acdefghijk5883jma.com"
|
||||||
|
)).to eq("가각갂갃간갅갆갇갈갉힢힣.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert " +
|
||||||
|
"'\347\242\274\346\250\231\346\272\226\350" +
|
||||||
|
"\220\254\345\234\213\347\242\274.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--9cs565brid46mda086o.com"
|
||||||
|
)).to eq(
|
||||||
|
"\347\242\274\346\250\231\346\272\226\350" +
|
||||||
|
"\220\254\345\234\213\347\242\274.com"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'リ宠퐱卄.com' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--eek174hoxfpr4k.com"
|
||||||
|
)).to eq("\343\203\252\345\256\240\355\220\261\345\215\204.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert 'ᆵ' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--4ud"
|
||||||
|
)).to eq("\341\206\265")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should convert '🌹🌹🌹.ws' correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"xn--2h8haa.ws"
|
||||||
|
)).to eq("\360\237\214\271\360\237\214\271\360\237\214\271.ws")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should handle two adjacent '.'s correctly" do
|
||||||
|
expect(Addressable::IDNA.to_unicode(
|
||||||
|
"example..host"
|
||||||
|
)).to eq("example..host")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should normalize 'string' correctly" do
|
||||||
|
expect(Addressable::IDNA.unicode_normalize_kc(:'string')).to eq("string")
|
||||||
|
expect(Addressable::IDNA.unicode_normalize_kc("string")).to eq("string")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe Addressable::IDNA, "when using the pure-Ruby implementation" do
|
||||||
|
before do
|
||||||
|
Addressable.send(:remove_const, :IDNA)
|
||||||
|
load "addressable/idna/pure.rb"
|
||||||
|
end
|
||||||
|
|
||||||
|
it_should_behave_like "converting from unicode to ASCII"
|
||||||
|
it_should_behave_like "converting from ASCII to unicode"
|
||||||
|
|
||||||
|
begin
|
||||||
|
require "fiber"
|
||||||
|
|
||||||
|
it "should not blow up inside fibers" do
|
||||||
|
f = Fiber.new do
|
||||||
|
Addressable.send(:remove_const, :IDNA)
|
||||||
|
load "addressable/idna/pure.rb"
|
||||||
|
end
|
||||||
|
f.resume
|
||||||
|
end
|
||||||
|
rescue LoadError
|
||||||
|
# Fibers aren't supported in this version of Ruby, skip this test.
|
||||||
|
warn('Fibers unsupported.')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
begin
|
||||||
|
require "idn"
|
||||||
|
|
||||||
|
describe Addressable::IDNA, "when using the native-code implementation" do
|
||||||
|
before do
|
||||||
|
Addressable.send(:remove_const, :IDNA)
|
||||||
|
load "addressable/idna/native.rb"
|
||||||
|
end
|
||||||
|
|
||||||
|
it_should_behave_like "converting from unicode to ASCII"
|
||||||
|
it_should_behave_like "converting from ASCII to unicode"
|
||||||
|
end
|
||||||
|
rescue LoadError
|
||||||
|
# Cannot test the native implementation without libidn support.
|
||||||
|
warn('Could not load native IDN implementation.')
|
||||||
|
end
|
30
vendor/bundle/gems/addressable-2.7.0/spec/addressable/net_http_compat_spec.rb
vendored
Normal file
30
vendor/bundle/gems/addressable-2.7.0/spec/addressable/net_http_compat_spec.rb
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# coding: utf-8
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
|
require "spec_helper"
|
||||||
|
|
||||||
|
require "addressable/uri"
|
||||||
|
require "net/http"
|
||||||
|
|
||||||
|
describe Net::HTTP do
|
||||||
|
it "should be compatible with Addressable" do
|
||||||
|
response_body =
|
||||||
|
Net::HTTP.get(Addressable::URI.parse('http://www.google.com/'))
|
||||||
|
expect(response_body).not_to be_nil
|
||||||
|
end
|
||||||
|
end
|
106
vendor/bundle/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb
vendored
Normal file
106
vendor/bundle/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb
vendored
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# coding: utf-8
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
|
require "spec_helper"
|
||||||
|
|
||||||
|
require "addressable/uri"
|
||||||
|
require "addressable/template"
|
||||||
|
require "rack/mount"
|
||||||
|
|
||||||
|
describe Rack::Mount do
|
||||||
|
let(:app_one) do
|
||||||
|
proc { |env| [200, {'Content-Type' => 'text/plain'}, 'Route 1'] }
|
||||||
|
end
|
||||||
|
let(:app_two) do
|
||||||
|
proc { |env| [200, {'Content-Type' => 'text/plain'}, 'Route 2'] }
|
||||||
|
end
|
||||||
|
let(:app_three) do
|
||||||
|
proc { |env| [200, {'Content-Type' => 'text/plain'}, 'Route 3'] }
|
||||||
|
end
|
||||||
|
let(:routes) do
|
||||||
|
s = Rack::Mount::RouteSet.new do |set|
|
||||||
|
set.add_route(app_one, {
|
||||||
|
:request_method => 'GET',
|
||||||
|
:path_info => Addressable::Template.new('/one/{id}/')
|
||||||
|
}, {:id => 'unidentified'}, :one)
|
||||||
|
set.add_route(app_two, {
|
||||||
|
:request_method => 'GET',
|
||||||
|
:path_info => Addressable::Template.new('/two/')
|
||||||
|
}, {:id => 'unidentified'}, :two)
|
||||||
|
set.add_route(app_three, {
|
||||||
|
:request_method => 'GET',
|
||||||
|
:path_info => Addressable::Template.new('/three/{id}/').to_regexp
|
||||||
|
}, {:id => 'unidentified'}, :three)
|
||||||
|
end
|
||||||
|
s.rehash
|
||||||
|
s
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should generate from routes with Addressable::Template" do
|
||||||
|
path, _ = routes.generate(:path_info, :one, {:id => '123'})
|
||||||
|
expect(path).to eq '/one/123/'
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should generate from routes with Addressable::Template using defaults" do
|
||||||
|
path, _ = routes.generate(:path_info, :one, {})
|
||||||
|
expect(path).to eq '/one/unidentified/'
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should recognize routes with Addressable::Template" do
|
||||||
|
request = Rack::Request.new(
|
||||||
|
'REQUEST_METHOD' => 'GET',
|
||||||
|
'PATH_INFO' => '/one/123/'
|
||||||
|
)
|
||||||
|
route, _, params = routes.recognize(request)
|
||||||
|
expect(route).not_to be_nil
|
||||||
|
expect(route.app).to eq app_one
|
||||||
|
expect(params).to eq({id: '123'})
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should generate from routes with Addressable::Template" do
|
||||||
|
path, _ = routes.generate(:path_info, :two, {:id => '654'})
|
||||||
|
expect(path).to eq '/two/'
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should generate from routes with Addressable::Template using defaults" do
|
||||||
|
path, _ = routes.generate(:path_info, :two, {})
|
||||||
|
expect(path).to eq '/two/'
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should recognize routes with Addressable::Template" do
|
||||||
|
request = Rack::Request.new(
|
||||||
|
'REQUEST_METHOD' => 'GET',
|
||||||
|
'PATH_INFO' => '/two/'
|
||||||
|
)
|
||||||
|
route, _, params = routes.recognize(request)
|
||||||
|
expect(route).not_to be_nil
|
||||||
|
expect(route.app).to eq app_two
|
||||||
|
expect(params).to eq({id: 'unidentified'})
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should recognize routes with derived Regexp" do
|
||||||
|
request = Rack::Request.new(
|
||||||
|
'REQUEST_METHOD' => 'GET',
|
||||||
|
'PATH_INFO' => '/three/789/'
|
||||||
|
)
|
||||||
|
route, _, params = routes.recognize(request)
|
||||||
|
expect(route).not_to be_nil
|
||||||
|
expect(route.app).to eq app_three
|
||||||
|
expect(params).to eq({id: '789'})
|
||||||
|
end
|
||||||
|
end
|
59
vendor/bundle/gems/addressable-2.7.0/spec/addressable/security_spec.rb
vendored
Normal file
59
vendor/bundle/gems/addressable-2.7.0/spec/addressable/security_spec.rb
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# coding: utf-8
|
||||||
|
# Copyright (C) Bob Aman
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
|
require "spec_helper"
|
||||||
|
|
||||||
|
require "addressable/uri"
|
||||||
|
|
||||||
|
describe Addressable::URI, "when created with a URI known to cause crashes " +
|
||||||
|
"in certain browsers" do
|
||||||
|
it "should parse correctly" do
|
||||||
|
uri = Addressable::URI.parse('%%30%30')
|
||||||
|
expect(uri.path).to eq('%%30%30')
|
||||||
|
expect(uri.normalize.path).to eq('%2500')
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should parse correctly as a full URI" do
|
||||||
|
uri = Addressable::URI.parse('http://www.example.com/%%30%30')
|
||||||
|
expect(uri.path).to eq('/%%30%30')
|
||||||
|
expect(uri.normalize.path).to eq('/%2500')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe Addressable::URI, "when created with a URI known to cause crashes " +
|
||||||
|
"in certain browsers" do
|
||||||
|
it "should parse correctly" do
|
||||||
|
uri = Addressable::URI.parse('لُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ 冗')
|
||||||
|
expect(uri.path).to eq('لُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ 冗')
|
||||||
|
expect(uri.normalize.path).to eq(
|
||||||
|
'%D9%84%D9%8F%D8%B5%D9%91%D8%A8%D9%8F%D9%84%D9%8F%D9%84%D8%B5%D9%91' +
|
||||||
|
'%D8%A8%D9%8F%D8%B1%D8%B1%D9%8B%20%E0%A5%A3%20%E0%A5%A3h%20%E0%A5' +
|
||||||
|
'%A3%20%E0%A5%A3%20%E5%86%97'
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should parse correctly as a full URI" do
|
||||||
|
uri = Addressable::URI.parse('http://www.example.com/لُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ 冗')
|
||||||
|
expect(uri.path).to eq('/لُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ 冗')
|
||||||
|
expect(uri.normalize.path).to eq(
|
||||||
|
'/%D9%84%D9%8F%D8%B5%D9%91%D8%A8%D9%8F%D9%84%D9%8F%D9%84%D8%B5%D9%91' +
|
||||||
|
'%D8%A8%D9%8F%D8%B1%D8%B1%D9%8B%20%E0%A5%A3%20%E0%A5%A3h%20%E0%A5' +
|
||||||
|
'%A3%20%E0%A5%A3%20%E5%86%97'
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
1451
vendor/bundle/gems/addressable-2.7.0/spec/addressable/template_spec.rb
vendored
Normal file
1451
vendor/bundle/gems/addressable-2.7.0/spec/addressable/template_spec.rb
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6603
vendor/bundle/gems/addressable-2.7.0/spec/addressable/uri_spec.rb
vendored
Normal file
6603
vendor/bundle/gems/addressable-2.7.0/spec/addressable/uri_spec.rb
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
vendor/bundle/gems/addressable-2.7.0/spec/spec_helper.rb
vendored
Normal file
24
vendor/bundle/gems/addressable-2.7.0/spec/spec_helper.rb
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'bundler/setup'
|
||||||
|
require 'rspec/its'
|
||||||
|
|
||||||
|
begin
|
||||||
|
require 'coveralls'
|
||||||
|
Coveralls.wear! do
|
||||||
|
add_filter "spec/"
|
||||||
|
add_filter "vendor/"
|
||||||
|
end
|
||||||
|
rescue LoadError
|
||||||
|
warn "warning: coveralls gem not found; skipping Coveralls"
|
||||||
|
require 'simplecov'
|
||||||
|
SimpleCov.start do
|
||||||
|
add_filter "spec/"
|
||||||
|
add_filter "vendor/"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
RSpec.configure do |config|
|
||||||
|
config.warnings = true
|
||||||
|
config.filter_run_when_matching :focus
|
||||||
|
end
|
4
vendor/bundle/gems/addressable-2.7.0/tasks/clobber.rake
vendored
Normal file
4
vendor/bundle/gems/addressable-2.7.0/tasks/clobber.rake
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
desc "Remove all build products"
|
||||||
|
task "clobber"
|
93
vendor/bundle/gems/addressable-2.7.0/tasks/gem.rake
vendored
Normal file
93
vendor/bundle/gems/addressable-2.7.0/tasks/gem.rake
vendored
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require "rubygems/package_task"
|
||||||
|
|
||||||
|
namespace :gem do
|
||||||
|
GEM_SPEC = Gem::Specification.new do |s|
|
||||||
|
s.name = PKG_NAME
|
||||||
|
s.version = PKG_VERSION
|
||||||
|
s.summary = PKG_SUMMARY
|
||||||
|
s.description = PKG_DESCRIPTION
|
||||||
|
|
||||||
|
s.files = PKG_FILES.to_a
|
||||||
|
|
||||||
|
s.has_rdoc = true
|
||||||
|
s.extra_rdoc_files = %w( README.md )
|
||||||
|
s.rdoc_options.concat ["--main", "README.md"]
|
||||||
|
|
||||||
|
if !s.respond_to?(:add_development_dependency)
|
||||||
|
puts "Cannot build Gem with this version of RubyGems."
|
||||||
|
exit(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
s.required_ruby_version = ">= 2.0"
|
||||||
|
|
||||||
|
s.add_runtime_dependency "public_suffix", ">= 2.0.2", "< 5.0"
|
||||||
|
s.add_development_dependency "bundler", ">= 1.0", "< 3.0"
|
||||||
|
|
||||||
|
s.require_path = "lib"
|
||||||
|
|
||||||
|
s.author = "Bob Aman"
|
||||||
|
s.email = "bob@sporkmonger.com"
|
||||||
|
s.homepage = "https://github.com/sporkmonger/addressable"
|
||||||
|
s.license = "Apache-2.0"
|
||||||
|
end
|
||||||
|
|
||||||
|
Gem::PackageTask.new(GEM_SPEC) do |p|
|
||||||
|
p.gem_spec = GEM_SPEC
|
||||||
|
p.need_tar = true
|
||||||
|
p.need_zip = true
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Generates .gemspec file"
|
||||||
|
task :gemspec do
|
||||||
|
spec_string = GEM_SPEC.to_ruby
|
||||||
|
File.open("#{GEM_SPEC.name}.gemspec", "w") do |file|
|
||||||
|
file.write spec_string
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Show information about the gem"
|
||||||
|
task :debug do
|
||||||
|
puts GEM_SPEC.to_ruby
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Install the gem"
|
||||||
|
task :install => ["clobber", "gem:package"] do
|
||||||
|
sh "#{SUDO} gem install --local pkg/#{GEM_SPEC.full_name}"
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Uninstall the gem"
|
||||||
|
task :uninstall do
|
||||||
|
installed_list = Gem.source_index.find_name(PKG_NAME)
|
||||||
|
if installed_list &&
|
||||||
|
(installed_list.collect { |s| s.version.to_s}.include?(PKG_VERSION))
|
||||||
|
sh(
|
||||||
|
"#{SUDO} gem uninstall --version '#{PKG_VERSION}' " +
|
||||||
|
"--ignore-dependencies --executables #{PKG_NAME}"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Reinstall the gem"
|
||||||
|
task :reinstall => [:uninstall, :install]
|
||||||
|
|
||||||
|
desc "Package for release"
|
||||||
|
task :release => ["gem:package", "gem:gemspec"] do |t|
|
||||||
|
v = ENV["VERSION"] or abort "Must supply VERSION=x.y.z"
|
||||||
|
abort "Versions don't match #{v} vs #{PROJ.version}" if v != PKG_VERSION
|
||||||
|
pkg = "pkg/#{GEM_SPEC.full_name}"
|
||||||
|
|
||||||
|
changelog = File.open("CHANGELOG.md") { |file| file.read }
|
||||||
|
|
||||||
|
puts "Releasing #{PKG_NAME} v. #{PKG_VERSION}"
|
||||||
|
Rake::Task["git:tag:create"].invoke
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Alias to gem:package"
|
||||||
|
task "gem" => "gem:package"
|
||||||
|
|
||||||
|
task "gem:release" => "gem:gemspec"
|
||||||
|
|
||||||
|
task "clobber" => ["gem:clobber_package"]
|
47
vendor/bundle/gems/addressable-2.7.0/tasks/git.rake
vendored
Normal file
47
vendor/bundle/gems/addressable-2.7.0/tasks/git.rake
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
namespace :git do
|
||||||
|
namespace :tag do
|
||||||
|
desc "List tags from the Git repository"
|
||||||
|
task :list do
|
||||||
|
tags = `git tag -l`
|
||||||
|
tags.gsub!("\r", "")
|
||||||
|
tags = tags.split("\n").sort {|a, b| b <=> a }
|
||||||
|
puts tags.join("\n")
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Create a new tag in the Git repository"
|
||||||
|
task :create do
|
||||||
|
changelog = File.open("CHANGELOG.md", "r") { |file| file.read }
|
||||||
|
puts "-" * 80
|
||||||
|
puts changelog
|
||||||
|
puts "-" * 80
|
||||||
|
puts
|
||||||
|
|
||||||
|
v = ENV["VERSION"] or abort "Must supply VERSION=x.y.z"
|
||||||
|
abort "Versions don't match #{v} vs #{PKG_VERSION}" if v != PKG_VERSION
|
||||||
|
|
||||||
|
git_status = `git status`
|
||||||
|
if git_status !~ /^nothing to commit/
|
||||||
|
abort "Working directory isn't clean."
|
||||||
|
end
|
||||||
|
|
||||||
|
tag = "#{PKG_NAME}-#{PKG_VERSION}"
|
||||||
|
msg = "Release #{PKG_NAME}-#{PKG_VERSION}"
|
||||||
|
|
||||||
|
existing_tags = `git tag -l #{PKG_NAME}-*`.split('\n')
|
||||||
|
if existing_tags.include?(tag)
|
||||||
|
warn("Tag already exists, deleting...")
|
||||||
|
unless system "git tag -d #{tag}"
|
||||||
|
abort "Tag deletion failed."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
puts "Creating git tag '#{tag}'..."
|
||||||
|
unless system "git tag -a -m \"#{msg}\" #{tag}"
|
||||||
|
abort "Tag creation failed."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
task "gem:release" => "git:tag:create"
|
24
vendor/bundle/gems/addressable-2.7.0/tasks/metrics.rake
vendored
Normal file
24
vendor/bundle/gems/addressable-2.7.0/tasks/metrics.rake
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
namespace :metrics do
|
||||||
|
task :lines do
|
||||||
|
lines, codelines, total_lines, total_codelines = 0, 0, 0, 0
|
||||||
|
for file_name in FileList["lib/**/*.rb"]
|
||||||
|
f = File.open(file_name)
|
||||||
|
while line = f.gets
|
||||||
|
lines += 1
|
||||||
|
next if line =~ /^\s*$/
|
||||||
|
next if line =~ /^\s*#/
|
||||||
|
codelines += 1
|
||||||
|
end
|
||||||
|
puts "L: #{sprintf("%4d", lines)}, " +
|
||||||
|
"LOC #{sprintf("%4d", codelines)} | #{file_name}"
|
||||||
|
total_lines += lines
|
||||||
|
total_codelines += codelines
|
||||||
|
|
||||||
|
lines, codelines = 0, 0
|
||||||
|
end
|
||||||
|
|
||||||
|
puts "Total: Lines #{total_lines}, LOC #{total_codelines}"
|
||||||
|
end
|
||||||
|
end
|
23
vendor/bundle/gems/addressable-2.7.0/tasks/rspec.rake
vendored
Normal file
23
vendor/bundle/gems/addressable-2.7.0/tasks/rspec.rake
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require "rspec/core/rake_task"
|
||||||
|
|
||||||
|
namespace :spec do
|
||||||
|
RSpec::Core::RakeTask.new(:simplecov) do |t|
|
||||||
|
t.pattern = FileList['spec/**/*_spec.rb']
|
||||||
|
t.rspec_opts = ['--color', '--format', 'documentation']
|
||||||
|
end
|
||||||
|
|
||||||
|
namespace :simplecov do
|
||||||
|
desc "Browse the code coverage report."
|
||||||
|
task :browse => "spec:simplecov" do
|
||||||
|
require "launchy"
|
||||||
|
Launchy.open("coverage/index.html")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Alias to spec:simplecov"
|
||||||
|
task "spec" => "spec:simplecov"
|
||||||
|
|
||||||
|
task "clobber" => ["spec:clobber_simplecov"]
|
29
vendor/bundle/gems/addressable-2.7.0/tasks/yard.rake
vendored
Normal file
29
vendor/bundle/gems/addressable-2.7.0/tasks/yard.rake
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require "rake"
|
||||||
|
|
||||||
|
begin
|
||||||
|
require "yard"
|
||||||
|
require "yard/rake/yardoc_task"
|
||||||
|
|
||||||
|
namespace :doc do
|
||||||
|
desc "Generate Yardoc documentation"
|
||||||
|
YARD::Rake::YardocTask.new do |yardoc|
|
||||||
|
yardoc.name = "yard"
|
||||||
|
yardoc.options = ["--verbose", "--markup", "markdown"]
|
||||||
|
yardoc.files = FileList[
|
||||||
|
"lib/**/*.rb", "ext/**/*.c",
|
||||||
|
"README.md", "CHANGELOG.md", "LICENSE.txt"
|
||||||
|
].exclude(/idna/)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
task "clobber" => ["doc:clobber_yard"]
|
||||||
|
|
||||||
|
desc "Alias to doc:yard"
|
||||||
|
task "doc" => "doc:yard"
|
||||||
|
rescue LoadError
|
||||||
|
# If yard isn't available, it's not the end of the world
|
||||||
|
desc "Alias to doc:rdoc"
|
||||||
|
task "doc" => "doc:rdoc"
|
||||||
|
end
|
11
vendor/bundle/gems/colorator-1.1.0/Gemfile
vendored
Normal file
11
vendor/bundle/gems/colorator-1.1.0/Gemfile
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
source "https://rubygems.org"
|
||||||
|
gemspec
|
||||||
|
|
||||||
|
gem "rake"
|
||||||
|
group :development do
|
||||||
|
gem "rspec-helpers", :require => false
|
||||||
|
gem "luna-rspec-formatters", :require => false
|
||||||
|
gem "pry", :require => false unless ENV[
|
||||||
|
"CI"
|
||||||
|
]
|
||||||
|
end
|
25
vendor/bundle/gems/colorator-1.1.0/History.markdown
vendored
Normal file
25
vendor/bundle/gems/colorator-1.1.0/History.markdown
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
## 1.1.0 / 2016-06-28
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
|
||||||
|
* Support jruby (#8)
|
||||||
|
|
||||||
|
## 1.0.0 / 2016-04-28
|
||||||
|
|
||||||
|
### Major enhancements
|
||||||
|
|
||||||
|
- Merge Simple::ANSI and Colorator. (#7)
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
|
||||||
|
- Delete unnecessary `Symbol#to_sym` (#2)
|
||||||
|
- Change argument name of `Enumerator#each` for better code legibility (#3)
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
|
||||||
|
- Convert to new RSpec expectation syntax (#1)
|
||||||
|
- Fix `String#blue` result in README (#4)
|
||||||
|
|
||||||
|
## 0.1 / 2013-04-13
|
||||||
|
|
||||||
|
Birthday!
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user