sync_readme 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.gitlab-ci.yml +29 -0
- data/.rspec +2 -0
- data/.rubocop.yml +69 -0
- data/.ruby-version +1 -0
- data/.sync_readme.example.yml +7 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE +1029 -0
- data/README.md +81 -0
- data/Rakefile +6 -0
- data/exe/sync_readme +4 -0
- data/lib/sync_readme.rb +40 -0
- data/lib/sync_readme/config.rb +59 -0
- data/lib/sync_readme/confluence_sync.rb +55 -0
- data/lib/sync_readme/reader.rb +28 -0
- data/lib/sync_readme/version.rb +3 -0
- data/sync_readme.gemspec +31 -0
- metadata +175 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6ba1afc35004193ffabf9193ee396e6f53e4a4a5
|
4
|
+
data.tar.gz: 9f89d7cb5e2aaf0e4970f6fd7949184c5f0cfc51
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: caa4072c8f7e3e41dbaabe1de190edaa4942d38c293bbb9e45bc9b735c799dd2210d421d525cfd48097996354a99275184eae1f0919b7f7d9d8d4bc51e5918fc
|
7
|
+
data.tar.gz: 0ff87c4d310577499a9b5aa7dbc0199437b5e5d3cd39440c6203830cd7f09ffba39965f0006d341ca542a60ec3ded04684dde2f5e648cfb714796c46d7dd85b8
|
data/.gitignore
ADDED
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
stages:
|
2
|
+
- Test
|
3
|
+
|
4
|
+
cache:
|
5
|
+
key: bundle_files
|
6
|
+
paths:
|
7
|
+
- .bundle/config
|
8
|
+
- .bundle/ruby/2.3.0/bin
|
9
|
+
- .bundle/ruby/2.3.0/build_info
|
10
|
+
- .bundle/ruby/2.3.0/bundler
|
11
|
+
- .bundle/ruby/2.3.0/doc
|
12
|
+
- .bundle/ruby/2.3.0/extensions
|
13
|
+
- .bundle/ruby/2.3.0/gems
|
14
|
+
- .bundle/ruby/2.3.0/specifications
|
15
|
+
|
16
|
+
before_script:
|
17
|
+
- rbenv install -s
|
18
|
+
- bundle -v || gem install bundler
|
19
|
+
- bundle install --quiet --path .bundle
|
20
|
+
|
21
|
+
RuboCop:
|
22
|
+
stage: Test
|
23
|
+
script:
|
24
|
+
- bundle exec rubocop
|
25
|
+
|
26
|
+
Unit:
|
27
|
+
stage: Test
|
28
|
+
script:
|
29
|
+
- bundle exec rspec
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
AllCops:
|
2
|
+
Exclude:
|
3
|
+
- 'db/**/*'
|
4
|
+
- 'Vagrantfile'
|
5
|
+
- 'vendor/**/*'
|
6
|
+
Style/SingleLineBlockParams:
|
7
|
+
Enabled: false
|
8
|
+
Rails/TimeZone:
|
9
|
+
Enabled: false
|
10
|
+
Rails/Date:
|
11
|
+
Enabled: false
|
12
|
+
Style/MultilineBlockChain:
|
13
|
+
Enabled: false
|
14
|
+
Metrics/LineLength:
|
15
|
+
Enabled: false
|
16
|
+
Metrics/ClassLength:
|
17
|
+
Enabled: false
|
18
|
+
Rails/Output:
|
19
|
+
Enabled: false
|
20
|
+
Documentation:
|
21
|
+
Enabled: false
|
22
|
+
Style/ClassAndModuleChildren:
|
23
|
+
Enabled: false
|
24
|
+
Metrics/ParameterLists:
|
25
|
+
Enabled: false
|
26
|
+
Style/CommentAnnotation:
|
27
|
+
Enabled: false
|
28
|
+
Style/FileName:
|
29
|
+
Enabled: false
|
30
|
+
Style/Semicolon:
|
31
|
+
Enabled: false
|
32
|
+
Style/GuardClause:
|
33
|
+
Enabled: false
|
34
|
+
Style/PredicateName:
|
35
|
+
Enabled: false
|
36
|
+
Style/EachWithObject:
|
37
|
+
Enabled: false
|
38
|
+
Metrics/CyclomaticComplexity:
|
39
|
+
Enabled: false
|
40
|
+
Metrics/PerceivedComplexity:
|
41
|
+
Enabled: false
|
42
|
+
Metrics/AbcSize:
|
43
|
+
Enabled: false
|
44
|
+
Style/RaiseArgs:
|
45
|
+
Enabled: false
|
46
|
+
Style/DoubleNegation:
|
47
|
+
Enabled: false
|
48
|
+
Metrics/MethodLength:
|
49
|
+
Enabled: false
|
50
|
+
Style/AccessorMethodName:
|
51
|
+
Enabled: false
|
52
|
+
Style/SignalException:
|
53
|
+
Enabled: false
|
54
|
+
Style/RegexpLiteral:
|
55
|
+
Enabled: false
|
56
|
+
Style/Next:
|
57
|
+
Enabled: false
|
58
|
+
Lint/AssignmentInCondition:
|
59
|
+
Enabled: false
|
60
|
+
Style/PercentLiteralDelimiters:
|
61
|
+
Enabled: false
|
62
|
+
Style/StringLiterals:
|
63
|
+
Enabled: false
|
64
|
+
Style/SpaceAroundEqualsInParameterDefault:
|
65
|
+
Enabled: false
|
66
|
+
Metrics/BlockLength:
|
67
|
+
Enabled: false
|
68
|
+
Style/FrozenStringLiteralComment:
|
69
|
+
Enabled: false
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.1
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at alex@ives.mn. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,1029 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html lang="en" class="">
|
7
|
+
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
|
8
|
+
<meta charset='utf-8'>
|
9
|
+
|
10
|
+
|
11
|
+
<link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-298818692f75de57d67115ca5a0c1f983d1d5ad302774216c297495f46f0a3da.css" media="all" rel="stylesheet" />
|
12
|
+
<link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-60036bb7b7dfd779ab4ba88c7223d4b0716de98371ee47d66a075a4d8b2f6098.css" media="all" rel="stylesheet" />
|
13
|
+
|
14
|
+
|
15
|
+
<link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/site-73b3dae8eb441c98982c7306f0e59decca409e87188e07bc1a961b8cea511aab.css" media="all" rel="stylesheet" />
|
16
|
+
|
17
|
+
|
18
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
19
|
+
<meta http-equiv="Content-Language" content="en">
|
20
|
+
<meta name="viewport" content="width=device-width">
|
21
|
+
|
22
|
+
<title>govdelivery-tms-ruby/LICENSE at master · govdelivery/govdelivery-tms-ruby · GitHub</title>
|
23
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
|
24
|
+
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
|
25
|
+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
26
|
+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
|
27
|
+
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
|
28
|
+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
|
29
|
+
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
|
30
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
|
31
|
+
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
|
32
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
|
33
|
+
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
|
34
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
|
35
|
+
<meta property="fb:app_id" content="1401488693436528">
|
36
|
+
|
37
|
+
<meta content="https://avatars1.githubusercontent.com/u/210271?v=3&s=400" name="twitter:image:src" /><meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="govdelivery/govdelivery-tms-ruby" name="twitter:title" /><meta content="govdelivery-tms-ruby - A Ruby client to interact with the GovDelivery Targeted Messaging API" name="twitter:description" />
|
38
|
+
<meta content="https://avatars1.githubusercontent.com/u/210271?v=3&s=400" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="govdelivery/govdelivery-tms-ruby" property="og:title" /><meta content="https://github.com/govdelivery/govdelivery-tms-ruby" property="og:url" /><meta content="govdelivery-tms-ruby - A Ruby client to interact with the GovDelivery Targeted Messaging API" property="og:description" />
|
39
|
+
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
|
40
|
+
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
|
41
|
+
<link rel="assets" href="https://assets-cdn.github.com/">
|
42
|
+
|
43
|
+
<meta name="pjax-timeout" content="1000">
|
44
|
+
|
45
|
+
<meta name="request-id" content="99A2:36A8:CEDFC9:14A415A:588A2522" data-pjax-transient>
|
46
|
+
|
47
|
+
<meta name="msapplication-TileImage" content="/windows-tile.png">
|
48
|
+
<meta name="msapplication-TileColor" content="#ffffff">
|
49
|
+
<meta name="selected-link" value="repo_source" data-pjax-transient>
|
50
|
+
|
51
|
+
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
|
52
|
+
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
|
53
|
+
<meta name="google-analytics" content="UA-3769691-2">
|
54
|
+
|
55
|
+
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="99A2:36A8:CEDFC9:14A415A:588A2522" name="octolytics-dimension-request_id" />
|
56
|
+
<meta content="/<user-name>/<repo-name>/blob/show" data-pjax-transient="true" name="analytics-location" />
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
<meta class="js-ga-set" name="dimension1" content="Logged Out">
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
<meta name="hostname" content="github.com">
|
65
|
+
<meta name="user-login" content="">
|
66
|
+
|
67
|
+
<meta name="expected-hostname" content="github.com">
|
68
|
+
<meta name="js-proxy-site-detection-payload" content="N2FlZmVjYTdhMmFlMWNmZGQ2MWY1ZmNmODVjYmRhMmFkYmQwOWQzODQ4OWQ2ZTFlNmNmMDRhZTM1MmFjMjhiNXx7InJlbW90ZV9hZGRyZXNzIjoiNzMuOTQuMTIxLjI1NSIsInJlcXVlc3RfaWQiOiI5OUEyOjM2QTg6Q0VERkM5OjE0QTQxNUE6NTg4QTI1MjIiLCJ0aW1lc3RhbXAiOjE0ODU0NDg0ODIsImhvc3QiOiJnaXRodWIuY29tIn0=">
|
69
|
+
|
70
|
+
|
71
|
+
<link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#000000">
|
72
|
+
<link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
|
73
|
+
|
74
|
+
<meta name="html-safe-nonce" content="2ed4e879b745a35786f4e14758bd793e2ad031ea">
|
75
|
+
|
76
|
+
<meta http-equiv="x-pjax-version" content="4a89fd60121b4baec04d4702e87703a6">
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
<meta name="description" content="govdelivery-tms-ruby - A Ruby client to interact with the GovDelivery Targeted Messaging API">
|
81
|
+
<meta name="go-import" content="github.com/govdelivery/govdelivery-tms-ruby git https://github.com/govdelivery/govdelivery-tms-ruby.git">
|
82
|
+
|
83
|
+
<meta content="210271" name="octolytics-dimension-user_id" /><meta content="govdelivery" name="octolytics-dimension-user_login" /><meta content="6372857" name="octolytics-dimension-repository_id" /><meta content="govdelivery/govdelivery-tms-ruby" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="6372857" name="octolytics-dimension-repository_network_root_id" /><meta content="govdelivery/govdelivery-tms-ruby" name="octolytics-dimension-repository_network_root_nwo" />
|
84
|
+
<link href="https://github.com/govdelivery/govdelivery-tms-ruby/commits/master.atom" rel="alternate" title="Recent Commits to govdelivery-tms-ruby:master" type="application/atom+xml">
|
85
|
+
|
86
|
+
|
87
|
+
<link rel="canonical" href="https://github.com/govdelivery/govdelivery-tms-ruby/blob/master/LICENSE" data-pjax-transient>
|
88
|
+
</head>
|
89
|
+
|
90
|
+
|
91
|
+
<body class="logged-out env-production vis-public page-blob">
|
92
|
+
<div id="js-pjax-loader-bar" class="pjax-loader-bar"><div class="progress"></div></div>
|
93
|
+
<a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
<header class="site-header js-details-container Details alt-body-font" role="banner">
|
102
|
+
<div class="container-responsive">
|
103
|
+
<a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
|
104
|
+
<svg aria-hidden="true" class="octicon octicon-mark-github" height="32" version="1.1" viewBox="0 0 16 16" width="32"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
|
105
|
+
</a>
|
106
|
+
|
107
|
+
<button class="btn-link float-right site-header-toggle js-details-target" type="button" aria-label="Toggle navigation">
|
108
|
+
<svg aria-hidden="true" class="octicon octicon-three-bars" height="24" version="1.1" viewBox="0 0 12 16" width="18"><path fill-rule="evenodd" d="M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"/></svg>
|
109
|
+
</button>
|
110
|
+
|
111
|
+
<div class="site-header-menu">
|
112
|
+
<nav class="site-header-nav site-header-nav-main">
|
113
|
+
<a href="/personal" class="js-selected-navigation-item nav-item nav-item-personal" data-ga-click="Header, click, Nav menu - item:personal" data-selected-links="/personal /personal">
|
114
|
+
Personal
|
115
|
+
</a> <a href="/open-source" class="js-selected-navigation-item nav-item nav-item-opensource" data-ga-click="Header, click, Nav menu - item:opensource" data-selected-links="/open-source /open-source">
|
116
|
+
Open source
|
117
|
+
</a> <a href="/business" class="js-selected-navigation-item nav-item nav-item-business" data-ga-click="Header, click, Nav menu - item:business" data-selected-links="/business /business/partners /business/features /business/customers /business">
|
118
|
+
Business
|
119
|
+
</a> <a href="/explore" class="js-selected-navigation-item nav-item nav-item-explore" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship /showcases /explore">
|
120
|
+
Explore
|
121
|
+
</a> </nav>
|
122
|
+
|
123
|
+
<div class="site-header-actions">
|
124
|
+
<a class="btn btn-primary site-header-actions-btn" href="/join?source=header-repo" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>
|
125
|
+
<a class="btn site-header-actions-btn mr-1" href="/login?return_to=%2Fgovdelivery%2Fgovdelivery-tms-ruby%2Fblob%2Fmaster%2FLICENSE" data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">Sign in</a>
|
126
|
+
</div>
|
127
|
+
|
128
|
+
<nav class="site-header-nav site-header-nav-secondary mr-md-3">
|
129
|
+
<a class="nav-item" href="/pricing">Pricing</a>
|
130
|
+
<a class="nav-item" href="/blog">Blog</a>
|
131
|
+
<a class="nav-item" href="https://help.github.com">Support</a>
|
132
|
+
<a class="nav-item header-search-link" href="https://github.com/search">Search GitHub</a>
|
133
|
+
<div class="header-search scoped-search site-scoped-search js-site-search" role="search">
|
134
|
+
<!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/govdelivery/govdelivery-tms-ruby/search" class="js-site-search-form" data-scoped-search-url="/govdelivery/govdelivery-tms-ruby/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /></div>
|
135
|
+
<label class="form-control header-search-wrapper js-chromeless-input-container">
|
136
|
+
<div class="header-search-scope">This repository</div>
|
137
|
+
<input type="text"
|
138
|
+
class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"
|
139
|
+
data-hotkey="s"
|
140
|
+
name="q"
|
141
|
+
placeholder="Search"
|
142
|
+
aria-label="Search this repository"
|
143
|
+
data-unscoped-placeholder="Search GitHub"
|
144
|
+
data-scoped-placeholder="Search"
|
145
|
+
autocapitalize="off">
|
146
|
+
</label>
|
147
|
+
</form></div>
|
148
|
+
|
149
|
+
</nav>
|
150
|
+
</div>
|
151
|
+
</div>
|
152
|
+
</header>
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
<div id="start-of-content" class="accessibility-aid"></div>
|
157
|
+
|
158
|
+
<div id="js-flash-container">
|
159
|
+
</div>
|
160
|
+
|
161
|
+
|
162
|
+
<div role="main">
|
163
|
+
<div itemscope itemtype="http://schema.org/SoftwareSourceCode">
|
164
|
+
<div id="js-repo-pjax-container" data-pjax-container>
|
165
|
+
|
166
|
+
<div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav">
|
167
|
+
<div class="container repohead-details-container">
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
<ul class="pagehead-actions">
|
172
|
+
|
173
|
+
<li>
|
174
|
+
<a href="/login?return_to=%2Fgovdelivery%2Fgovdelivery-tms-ruby"
|
175
|
+
class="btn btn-sm btn-with-count tooltipped tooltipped-n"
|
176
|
+
aria-label="You must be signed in to watch a repository" rel="nofollow">
|
177
|
+
<svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
|
178
|
+
Watch
|
179
|
+
</a>
|
180
|
+
<a class="social-count" href="/govdelivery/govdelivery-tms-ruby/watchers"
|
181
|
+
aria-label="30 users are watching this repository">
|
182
|
+
30
|
183
|
+
</a>
|
184
|
+
|
185
|
+
</li>
|
186
|
+
|
187
|
+
<li>
|
188
|
+
<a href="/login?return_to=%2Fgovdelivery%2Fgovdelivery-tms-ruby"
|
189
|
+
class="btn btn-sm btn-with-count tooltipped tooltipped-n"
|
190
|
+
aria-label="You must be signed in to star a repository" rel="nofollow">
|
191
|
+
<svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"/></svg>
|
192
|
+
Star
|
193
|
+
</a>
|
194
|
+
|
195
|
+
<a class="social-count js-social-count" href="/govdelivery/govdelivery-tms-ruby/stargazers"
|
196
|
+
aria-label="1 user starred this repository">
|
197
|
+
1
|
198
|
+
</a>
|
199
|
+
|
200
|
+
</li>
|
201
|
+
|
202
|
+
<li>
|
203
|
+
<a href="/login?return_to=%2Fgovdelivery%2Fgovdelivery-tms-ruby"
|
204
|
+
class="btn btn-sm btn-with-count tooltipped tooltipped-n"
|
205
|
+
aria-label="You must be signed in to fork a repository" rel="nofollow">
|
206
|
+
<svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
|
207
|
+
Fork
|
208
|
+
</a>
|
209
|
+
|
210
|
+
<a href="/govdelivery/govdelivery-tms-ruby/network" class="social-count"
|
211
|
+
aria-label="5 users forked this repository">
|
212
|
+
5
|
213
|
+
</a>
|
214
|
+
</li>
|
215
|
+
</ul>
|
216
|
+
|
217
|
+
<h1 class="public ">
|
218
|
+
<svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
219
|
+
<span class="author" itemprop="author"><a href="/govdelivery" class="url fn" rel="author">govdelivery</a></span><!--
|
220
|
+
--><span class="path-divider">/</span><!--
|
221
|
+
--><strong itemprop="name"><a href="/govdelivery/govdelivery-tms-ruby" data-pjax="#js-repo-pjax-container">govdelivery-tms-ruby</a></strong>
|
222
|
+
|
223
|
+
</h1>
|
224
|
+
|
225
|
+
</div>
|
226
|
+
<div class="container">
|
227
|
+
|
228
|
+
<nav class="reponav js-repo-nav js-sidenav-container-pjax"
|
229
|
+
itemscope
|
230
|
+
itemtype="http://schema.org/BreadcrumbList"
|
231
|
+
role="navigation"
|
232
|
+
data-pjax="#js-repo-pjax-container">
|
233
|
+
|
234
|
+
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
235
|
+
<a href="/govdelivery/govdelivery-tms-ruby" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /govdelivery/govdelivery-tms-ruby" itemprop="url">
|
236
|
+
<svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg>
|
237
|
+
<span itemprop="name">Code</span>
|
238
|
+
<meta itemprop="position" content="1">
|
239
|
+
</a> </span>
|
240
|
+
|
241
|
+
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
242
|
+
<a href="/govdelivery/govdelivery-tms-ruby/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /govdelivery/govdelivery-tms-ruby/issues" itemprop="url">
|
243
|
+
<svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/></svg>
|
244
|
+
<span itemprop="name">Issues</span>
|
245
|
+
<span class="counter">0</span>
|
246
|
+
<meta itemprop="position" content="2">
|
247
|
+
</a> </span>
|
248
|
+
|
249
|
+
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
250
|
+
<a href="/govdelivery/govdelivery-tms-ruby/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /govdelivery/govdelivery-tms-ruby/pulls" itemprop="url">
|
251
|
+
<svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
|
252
|
+
<span itemprop="name">Pull requests</span>
|
253
|
+
<span class="counter">0</span>
|
254
|
+
<meta itemprop="position" content="3">
|
255
|
+
</a> </span>
|
256
|
+
|
257
|
+
<a href="/govdelivery/govdelivery-tms-ruby/projects" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /govdelivery/govdelivery-tms-ruby/projects">
|
258
|
+
<svg aria-hidden="true" class="octicon octicon-project" height="16" version="1.1" viewBox="0 0 15 16" width="15"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"/></svg>
|
259
|
+
Projects
|
260
|
+
<span class="counter">0</span>
|
261
|
+
</a>
|
262
|
+
|
263
|
+
|
264
|
+
<a href="/govdelivery/govdelivery-tms-ruby/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="pulse /govdelivery/govdelivery-tms-ruby/pulse">
|
265
|
+
<svg aria-hidden="true" class="octicon octicon-pulse" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"/></svg>
|
266
|
+
Pulse
|
267
|
+
</a>
|
268
|
+
<a href="/govdelivery/govdelivery-tms-ruby/graphs" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors /govdelivery/govdelivery-tms-ruby/graphs">
|
269
|
+
<svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"/></svg>
|
270
|
+
Graphs
|
271
|
+
</a>
|
272
|
+
|
273
|
+
</nav>
|
274
|
+
|
275
|
+
</div>
|
276
|
+
</div>
|
277
|
+
|
278
|
+
<div class="container new-discussion-timeline experiment-repo-nav">
|
279
|
+
<div class="repository-content">
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
<a href="/govdelivery/govdelivery-tms-ruby/blob/c4db94a4cb0f67bdf094b128423ba4fa19ef94ad/LICENSE" class="d-none js-permalink-shortcut" data-hotkey="y">Permalink</a>
|
284
|
+
|
285
|
+
<!-- blob contrib key: blob_contributors:v21:d8953cbd711f15ea0c5b993e3904acc4 -->
|
286
|
+
|
287
|
+
<div class="file-navigation js-zeroclipboard-container">
|
288
|
+
|
289
|
+
<div class="select-menu branch-select-menu js-menu-container js-select-menu float-left">
|
290
|
+
<button class="btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"
|
291
|
+
|
292
|
+
type="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
|
293
|
+
<i>Branch:</i>
|
294
|
+
<span class="js-select-button css-truncate-target">master</span>
|
295
|
+
</button>
|
296
|
+
|
297
|
+
<div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">
|
298
|
+
|
299
|
+
<div class="select-menu-modal">
|
300
|
+
<div class="select-menu-header">
|
301
|
+
<svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
|
302
|
+
<span class="select-menu-title">Switch branches/tags</span>
|
303
|
+
</div>
|
304
|
+
|
305
|
+
<div class="select-menu-filters">
|
306
|
+
<div class="select-menu-text-filter">
|
307
|
+
<input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
|
308
|
+
</div>
|
309
|
+
<div class="select-menu-tabs">
|
310
|
+
<ul>
|
311
|
+
<li class="select-menu-tab">
|
312
|
+
<a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>
|
313
|
+
</li>
|
314
|
+
<li class="select-menu-tab">
|
315
|
+
<a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>
|
316
|
+
</li>
|
317
|
+
</ul>
|
318
|
+
</div>
|
319
|
+
</div>
|
320
|
+
|
321
|
+
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">
|
322
|
+
|
323
|
+
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
|
324
|
+
|
325
|
+
|
326
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
327
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/actionmailer_changes/LICENSE"
|
328
|
+
data-name="actionmailer_changes"
|
329
|
+
data-skip-pjax="true"
|
330
|
+
rel="nofollow">
|
331
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
332
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
333
|
+
actionmailer_changes
|
334
|
+
</span>
|
335
|
+
</a>
|
336
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
337
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/add-message-types/LICENSE"
|
338
|
+
data-name="add-message-types"
|
339
|
+
data-skip-pjax="true"
|
340
|
+
rel="nofollow">
|
341
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
342
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
343
|
+
add-message-types
|
344
|
+
</span>
|
345
|
+
</a>
|
346
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
347
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/alexives/add_uuid_to_templates/LICENSE"
|
348
|
+
data-name="alexives/add_uuid_to_templates"
|
349
|
+
data-skip-pjax="true"
|
350
|
+
rel="nofollow">
|
351
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
352
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
353
|
+
alexives/add_uuid_to_templates
|
354
|
+
</span>
|
355
|
+
</a>
|
356
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
357
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/ipaws/LICENSE"
|
358
|
+
data-name="ipaws"
|
359
|
+
data-skip-pjax="true"
|
360
|
+
rel="nofollow">
|
361
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
362
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
363
|
+
ipaws
|
364
|
+
</span>
|
365
|
+
</a>
|
366
|
+
<a class="select-menu-item js-navigation-item js-navigation-open selected"
|
367
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/master/LICENSE"
|
368
|
+
data-name="master"
|
369
|
+
data-skip-pjax="true"
|
370
|
+
rel="nofollow">
|
371
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
372
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
373
|
+
master
|
374
|
+
</span>
|
375
|
+
</a>
|
376
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
377
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/nullable_attributes/LICENSE"
|
378
|
+
data-name="nullable_attributes"
|
379
|
+
data-skip-pjax="true"
|
380
|
+
rel="nofollow">
|
381
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
382
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
383
|
+
nullable_attributes
|
384
|
+
</span>
|
385
|
+
</a>
|
386
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
387
|
+
href="/govdelivery/govdelivery-tms-ruby/blob/travis/LICENSE"
|
388
|
+
data-name="travis"
|
389
|
+
data-skip-pjax="true"
|
390
|
+
rel="nofollow">
|
391
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
392
|
+
<span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
|
393
|
+
travis
|
394
|
+
</span>
|
395
|
+
</a>
|
396
|
+
</div>
|
397
|
+
|
398
|
+
<div class="select-menu-no-results">Nothing to show</div>
|
399
|
+
</div>
|
400
|
+
|
401
|
+
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
|
402
|
+
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
|
403
|
+
|
404
|
+
|
405
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
406
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.9.4/LICENSE"
|
407
|
+
data-name="v0.9.4"
|
408
|
+
data-skip-pjax="true"
|
409
|
+
rel="nofollow">
|
410
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
411
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.9.4">
|
412
|
+
v0.9.4
|
413
|
+
</span>
|
414
|
+
</a>
|
415
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
416
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.9.3/LICENSE"
|
417
|
+
data-name="v0.9.3"
|
418
|
+
data-skip-pjax="true"
|
419
|
+
rel="nofollow">
|
420
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
421
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.9.3">
|
422
|
+
v0.9.3
|
423
|
+
</span>
|
424
|
+
</a>
|
425
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
426
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.9.2/LICENSE"
|
427
|
+
data-name="v0.9.2"
|
428
|
+
data-skip-pjax="true"
|
429
|
+
rel="nofollow">
|
430
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
431
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.9.2">
|
432
|
+
v0.9.2
|
433
|
+
</span>
|
434
|
+
</a>
|
435
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
436
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.9.1/LICENSE"
|
437
|
+
data-name="v0.9.1"
|
438
|
+
data-skip-pjax="true"
|
439
|
+
rel="nofollow">
|
440
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
441
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.9.1">
|
442
|
+
v0.9.1
|
443
|
+
</span>
|
444
|
+
</a>
|
445
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
446
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.9.0/LICENSE"
|
447
|
+
data-name="v0.9.0"
|
448
|
+
data-skip-pjax="true"
|
449
|
+
rel="nofollow">
|
450
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
451
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.9.0">
|
452
|
+
v0.9.0
|
453
|
+
</span>
|
454
|
+
</a>
|
455
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
456
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.14/LICENSE"
|
457
|
+
data-name="v0.8.14"
|
458
|
+
data-skip-pjax="true"
|
459
|
+
rel="nofollow">
|
460
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
461
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.14">
|
462
|
+
v0.8.14
|
463
|
+
</span>
|
464
|
+
</a>
|
465
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
466
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.13/LICENSE"
|
467
|
+
data-name="v0.8.13"
|
468
|
+
data-skip-pjax="true"
|
469
|
+
rel="nofollow">
|
470
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
471
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.13">
|
472
|
+
v0.8.13
|
473
|
+
</span>
|
474
|
+
</a>
|
475
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
476
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.11/LICENSE"
|
477
|
+
data-name="v0.8.11"
|
478
|
+
data-skip-pjax="true"
|
479
|
+
rel="nofollow">
|
480
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
481
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.11">
|
482
|
+
v0.8.11
|
483
|
+
</span>
|
484
|
+
</a>
|
485
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
486
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.10/LICENSE"
|
487
|
+
data-name="v0.8.10"
|
488
|
+
data-skip-pjax="true"
|
489
|
+
rel="nofollow">
|
490
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
491
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.10">
|
492
|
+
v0.8.10
|
493
|
+
</span>
|
494
|
+
</a>
|
495
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
496
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.9/LICENSE"
|
497
|
+
data-name="v0.8.9"
|
498
|
+
data-skip-pjax="true"
|
499
|
+
rel="nofollow">
|
500
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
501
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.9">
|
502
|
+
v0.8.9
|
503
|
+
</span>
|
504
|
+
</a>
|
505
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
506
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.8/LICENSE"
|
507
|
+
data-name="v0.8.8"
|
508
|
+
data-skip-pjax="true"
|
509
|
+
rel="nofollow">
|
510
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
511
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.8">
|
512
|
+
v0.8.8
|
513
|
+
</span>
|
514
|
+
</a>
|
515
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
516
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.7/LICENSE"
|
517
|
+
data-name="v0.8.7"
|
518
|
+
data-skip-pjax="true"
|
519
|
+
rel="nofollow">
|
520
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
521
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.7">
|
522
|
+
v0.8.7
|
523
|
+
</span>
|
524
|
+
</a>
|
525
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
526
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.5/LICENSE"
|
527
|
+
data-name="v0.8.5"
|
528
|
+
data-skip-pjax="true"
|
529
|
+
rel="nofollow">
|
530
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
531
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.5">
|
532
|
+
v0.8.5
|
533
|
+
</span>
|
534
|
+
</a>
|
535
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
536
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.4/LICENSE"
|
537
|
+
data-name="v0.8.4"
|
538
|
+
data-skip-pjax="true"
|
539
|
+
rel="nofollow">
|
540
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
541
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.4">
|
542
|
+
v0.8.4
|
543
|
+
</span>
|
544
|
+
</a>
|
545
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
546
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.3/LICENSE"
|
547
|
+
data-name="v0.8.3"
|
548
|
+
data-skip-pjax="true"
|
549
|
+
rel="nofollow">
|
550
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
551
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.3">
|
552
|
+
v0.8.3
|
553
|
+
</span>
|
554
|
+
</a>
|
555
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
556
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.2/LICENSE"
|
557
|
+
data-name="v0.8.2"
|
558
|
+
data-skip-pjax="true"
|
559
|
+
rel="nofollow">
|
560
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
561
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.2">
|
562
|
+
v0.8.2
|
563
|
+
</span>
|
564
|
+
</a>
|
565
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
566
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.1/LICENSE"
|
567
|
+
data-name="v0.8.1"
|
568
|
+
data-skip-pjax="true"
|
569
|
+
rel="nofollow">
|
570
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
571
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.1">
|
572
|
+
v0.8.1
|
573
|
+
</span>
|
574
|
+
</a>
|
575
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
576
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.8.0/LICENSE"
|
577
|
+
data-name="v0.8.0"
|
578
|
+
data-skip-pjax="true"
|
579
|
+
rel="nofollow">
|
580
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
581
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.8.0">
|
582
|
+
v0.8.0
|
583
|
+
</span>
|
584
|
+
</a>
|
585
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
586
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.6.0/LICENSE"
|
587
|
+
data-name="v0.6.0"
|
588
|
+
data-skip-pjax="true"
|
589
|
+
rel="nofollow">
|
590
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
591
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.6.0">
|
592
|
+
v0.6.0
|
593
|
+
</span>
|
594
|
+
</a>
|
595
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
596
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.5.4/LICENSE"
|
597
|
+
data-name="v0.5.4"
|
598
|
+
data-skip-pjax="true"
|
599
|
+
rel="nofollow">
|
600
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
601
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.5.4">
|
602
|
+
v0.5.4
|
603
|
+
</span>
|
604
|
+
</a>
|
605
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
606
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.5.3/LICENSE"
|
607
|
+
data-name="v0.5.3"
|
608
|
+
data-skip-pjax="true"
|
609
|
+
rel="nofollow">
|
610
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
611
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.5.3">
|
612
|
+
v0.5.3
|
613
|
+
</span>
|
614
|
+
</a>
|
615
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
616
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.5.2/LICENSE"
|
617
|
+
data-name="v0.5.2"
|
618
|
+
data-skip-pjax="true"
|
619
|
+
rel="nofollow">
|
620
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
621
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.5.2">
|
622
|
+
v0.5.2
|
623
|
+
</span>
|
624
|
+
</a>
|
625
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
626
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.5.1/LICENSE"
|
627
|
+
data-name="v0.5.1"
|
628
|
+
data-skip-pjax="true"
|
629
|
+
rel="nofollow">
|
630
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
631
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.5.1">
|
632
|
+
v0.5.1
|
633
|
+
</span>
|
634
|
+
</a>
|
635
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
636
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.5.0/LICENSE"
|
637
|
+
data-name="v0.5.0"
|
638
|
+
data-skip-pjax="true"
|
639
|
+
rel="nofollow">
|
640
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
641
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.5.0">
|
642
|
+
v0.5.0
|
643
|
+
</span>
|
644
|
+
</a>
|
645
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
646
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.4.1/LICENSE"
|
647
|
+
data-name="v0.4.1"
|
648
|
+
data-skip-pjax="true"
|
649
|
+
rel="nofollow">
|
650
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
651
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.4.1">
|
652
|
+
v0.4.1
|
653
|
+
</span>
|
654
|
+
</a>
|
655
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
656
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.4.0/LICENSE"
|
657
|
+
data-name="v0.4.0"
|
658
|
+
data-skip-pjax="true"
|
659
|
+
rel="nofollow">
|
660
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
661
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.4.0">
|
662
|
+
v0.4.0
|
663
|
+
</span>
|
664
|
+
</a>
|
665
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
666
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.3.0/LICENSE"
|
667
|
+
data-name="v0.3.0"
|
668
|
+
data-skip-pjax="true"
|
669
|
+
rel="nofollow">
|
670
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
671
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.3.0">
|
672
|
+
v0.3.0
|
673
|
+
</span>
|
674
|
+
</a>
|
675
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
676
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.2.1/LICENSE"
|
677
|
+
data-name="v0.2.1"
|
678
|
+
data-skip-pjax="true"
|
679
|
+
rel="nofollow">
|
680
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
681
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.2.1">
|
682
|
+
v0.2.1
|
683
|
+
</span>
|
684
|
+
</a>
|
685
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
686
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.2.0/LICENSE"
|
687
|
+
data-name="v0.2.0"
|
688
|
+
data-skip-pjax="true"
|
689
|
+
rel="nofollow">
|
690
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
691
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.2.0">
|
692
|
+
v0.2.0
|
693
|
+
</span>
|
694
|
+
</a>
|
695
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
696
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.1.1/LICENSE"
|
697
|
+
data-name="v0.1.1"
|
698
|
+
data-skip-pjax="true"
|
699
|
+
rel="nofollow">
|
700
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
701
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.1.1">
|
702
|
+
v0.1.1
|
703
|
+
</span>
|
704
|
+
</a>
|
705
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
706
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.1.0/LICENSE"
|
707
|
+
data-name="v0.1.0"
|
708
|
+
data-skip-pjax="true"
|
709
|
+
rel="nofollow">
|
710
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
711
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.1.0">
|
712
|
+
v0.1.0
|
713
|
+
</span>
|
714
|
+
</a>
|
715
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
716
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.0.3/LICENSE"
|
717
|
+
data-name="v0.0.3"
|
718
|
+
data-skip-pjax="true"
|
719
|
+
rel="nofollow">
|
720
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
721
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.0.3">
|
722
|
+
v0.0.3
|
723
|
+
</span>
|
724
|
+
</a>
|
725
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
726
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.0.2/LICENSE"
|
727
|
+
data-name="v0.0.2"
|
728
|
+
data-skip-pjax="true"
|
729
|
+
rel="nofollow">
|
730
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
731
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.0.2">
|
732
|
+
v0.0.2
|
733
|
+
</span>
|
734
|
+
</a>
|
735
|
+
<a class="select-menu-item js-navigation-item js-navigation-open "
|
736
|
+
href="/govdelivery/govdelivery-tms-ruby/tree/v0.0.1/LICENSE"
|
737
|
+
data-name="v0.0.1"
|
738
|
+
data-skip-pjax="true"
|
739
|
+
rel="nofollow">
|
740
|
+
<svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
|
741
|
+
<span class="select-menu-item-text css-truncate-target" title="v0.0.1">
|
742
|
+
v0.0.1
|
743
|
+
</span>
|
744
|
+
</a>
|
745
|
+
</div>
|
746
|
+
|
747
|
+
<div class="select-menu-no-results">Nothing to show</div>
|
748
|
+
</div>
|
749
|
+
|
750
|
+
</div>
|
751
|
+
</div>
|
752
|
+
</div>
|
753
|
+
|
754
|
+
<div class="BtnGroup float-right">
|
755
|
+
<a href="/govdelivery/govdelivery-tms-ruby/find/master"
|
756
|
+
class="js-pjax-capture-input btn btn-sm BtnGroup-item"
|
757
|
+
data-pjax
|
758
|
+
data-hotkey="t">
|
759
|
+
Find file
|
760
|
+
</a>
|
761
|
+
<button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm BtnGroup-item tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>
|
762
|
+
</div>
|
763
|
+
<div class="breadcrumb js-zeroclipboard-target">
|
764
|
+
<span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/govdelivery/govdelivery-tms-ruby"><span>govdelivery-tms-ruby</span></a></span></span><span class="separator">/</span><strong class="final-path">LICENSE</strong>
|
765
|
+
</div>
|
766
|
+
</div>
|
767
|
+
|
768
|
+
|
769
|
+
<div class="commit-tease">
|
770
|
+
<span class="float-right">
|
771
|
+
<a class="commit-tease-sha" href="/govdelivery/govdelivery-tms-ruby/commit/32de2aba02c17879e07c7104dda533fd71c16542" data-pjax>
|
772
|
+
32de2ab
|
773
|
+
</a>
|
774
|
+
<relative-time datetime="2015-05-07T21:42:44Z">May 7, 2015</relative-time>
|
775
|
+
</span>
|
776
|
+
<div>
|
777
|
+
<img alt="" class="avatar" data-canonical-src="https://2.gravatar.com/avatar/614339568ef1f72fa1b9fa06a61f8d47?d=https%3A%2F%2Fassets-cdn.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png&r=x&s=140" height="20" src="https://camo.githubusercontent.com/de0601061b7b73282e046e0fd213d555d9b1ca70/68747470733a2f2f322e67726176617461722e636f6d2f6176617461722f36313433333935363865663166373266613162396661303661363166386434373f643d68747470732533412532462532466173736574732d63646e2e6769746875622e636f6d253246696d6167657325324667726176617461727325324667726176617461722d757365722d3432302e706e6726723d7826733d313430" width="20" />
|
778
|
+
<span class="user-mention">James Suess</span>
|
779
|
+
<a href="/govdelivery/govdelivery-tms-ruby/commit/32de2aba02c17879e07c7104dda533fd71c16542" class="message" data-pjax="true" title="Move license to LICENSE file.">Move license to LICENSE file.</a>
|
780
|
+
</div>
|
781
|
+
|
782
|
+
<div class="commit-tease-contributors">
|
783
|
+
<button type="button" class="btn-link muted-link contributors-toggle" data-facebox="#blob_contributors_box">
|
784
|
+
<strong>0</strong>
|
785
|
+
contributors
|
786
|
+
</button>
|
787
|
+
|
788
|
+
</div>
|
789
|
+
|
790
|
+
<div id="blob_contributors_box" style="display:none">
|
791
|
+
<h2 class="facebox-header" data-facebox-id="facebox-header">Users who have contributed to this file</h2>
|
792
|
+
<ul class="facebox-user-list" data-facebox-id="facebox-description">
|
793
|
+
</ul>
|
794
|
+
</div>
|
795
|
+
</div>
|
796
|
+
|
797
|
+
|
798
|
+
<div class="file">
|
799
|
+
<div class="file-header">
|
800
|
+
<div class="file-actions">
|
801
|
+
|
802
|
+
<div class="BtnGroup">
|
803
|
+
<a href="/govdelivery/govdelivery-tms-ruby/raw/master/LICENSE" class="btn btn-sm BtnGroup-item" id="raw-url">Raw</a>
|
804
|
+
<a href="/govdelivery/govdelivery-tms-ruby/blame/master/LICENSE" class="btn btn-sm js-update-url-with-hash BtnGroup-item" data-hotkey="b">Blame</a>
|
805
|
+
<a href="/govdelivery/govdelivery-tms-ruby/commits/master/LICENSE" class="btn btn-sm BtnGroup-item" rel="nofollow">History</a>
|
806
|
+
</div>
|
807
|
+
|
808
|
+
|
809
|
+
<button type="button" class="btn-octicon disabled tooltipped tooltipped-nw"
|
810
|
+
aria-label="You must be signed in to make or propose changes">
|
811
|
+
<svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"/></svg>
|
812
|
+
</button>
|
813
|
+
<button type="button" class="btn-octicon btn-octicon-danger disabled tooltipped tooltipped-nw"
|
814
|
+
aria-label="You must be signed in to make or propose changes">
|
815
|
+
<svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"/></svg>
|
816
|
+
</button>
|
817
|
+
</div>
|
818
|
+
|
819
|
+
<div class="file-info">
|
820
|
+
28 lines (22 sloc)
|
821
|
+
<span class="file-info-divider"></span>
|
822
|
+
1.45 KB
|
823
|
+
</div>
|
824
|
+
</div>
|
825
|
+
|
826
|
+
|
827
|
+
|
828
|
+
<div itemprop="text" class="blob-wrapper data type-text">
|
829
|
+
<table class="highlight tab-size js-file-line-container" data-tab-size="8">
|
830
|
+
<tr>
|
831
|
+
<td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
|
832
|
+
<td id="LC1" class="blob-code blob-code-inner js-file-line">Copyright (c) 2015, GovDelivery</td>
|
833
|
+
</tr>
|
834
|
+
<tr>
|
835
|
+
<td id="L2" class="blob-num js-line-number" data-line-number="2"></td>
|
836
|
+
<td id="LC2" class="blob-code blob-code-inner js-file-line">All rights reserved.</td>
|
837
|
+
</tr>
|
838
|
+
<tr>
|
839
|
+
<td id="L3" class="blob-num js-line-number" data-line-number="3"></td>
|
840
|
+
<td id="LC3" class="blob-code blob-code-inner js-file-line">
|
841
|
+
</td>
|
842
|
+
</tr>
|
843
|
+
<tr>
|
844
|
+
<td id="L4" class="blob-num js-line-number" data-line-number="4"></td>
|
845
|
+
<td id="LC4" class="blob-code blob-code-inner js-file-line">Redistribution and use in source and binary forms, with or without</td>
|
846
|
+
</tr>
|
847
|
+
<tr>
|
848
|
+
<td id="L5" class="blob-num js-line-number" data-line-number="5"></td>
|
849
|
+
<td id="LC5" class="blob-code blob-code-inner js-file-line">modification, are permitted provided that the following conditions are met:</td>
|
850
|
+
</tr>
|
851
|
+
<tr>
|
852
|
+
<td id="L6" class="blob-num js-line-number" data-line-number="6"></td>
|
853
|
+
<td id="LC6" class="blob-code blob-code-inner js-file-line">
|
854
|
+
</td>
|
855
|
+
</tr>
|
856
|
+
<tr>
|
857
|
+
<td id="L7" class="blob-num js-line-number" data-line-number="7"></td>
|
858
|
+
<td id="LC7" class="blob-code blob-code-inner js-file-line">* Redistributions of source code must retain the above copyright notice, this</td>
|
859
|
+
</tr>
|
860
|
+
<tr>
|
861
|
+
<td id="L8" class="blob-num js-line-number" data-line-number="8"></td>
|
862
|
+
<td id="LC8" class="blob-code blob-code-inner js-file-line"> list of conditions and the following disclaimer.</td>
|
863
|
+
</tr>
|
864
|
+
<tr>
|
865
|
+
<td id="L9" class="blob-num js-line-number" data-line-number="9"></td>
|
866
|
+
<td id="LC9" class="blob-code blob-code-inner js-file-line">
|
867
|
+
</td>
|
868
|
+
</tr>
|
869
|
+
<tr>
|
870
|
+
<td id="L10" class="blob-num js-line-number" data-line-number="10"></td>
|
871
|
+
<td id="LC10" class="blob-code blob-code-inner js-file-line">* Redistributions in binary form must reproduce the above copyright notice,</td>
|
872
|
+
</tr>
|
873
|
+
<tr>
|
874
|
+
<td id="L11" class="blob-num js-line-number" data-line-number="11"></td>
|
875
|
+
<td id="LC11" class="blob-code blob-code-inner js-file-line"> this list of conditions and the following disclaimer in the documentation</td>
|
876
|
+
</tr>
|
877
|
+
<tr>
|
878
|
+
<td id="L12" class="blob-num js-line-number" data-line-number="12"></td>
|
879
|
+
<td id="LC12" class="blob-code blob-code-inner js-file-line"> and/or other materials provided with the distribution.</td>
|
880
|
+
</tr>
|
881
|
+
<tr>
|
882
|
+
<td id="L13" class="blob-num js-line-number" data-line-number="13"></td>
|
883
|
+
<td id="LC13" class="blob-code blob-code-inner js-file-line">
|
884
|
+
</td>
|
885
|
+
</tr>
|
886
|
+
<tr>
|
887
|
+
<td id="L14" class="blob-num js-line-number" data-line-number="14"></td>
|
888
|
+
<td id="LC14" class="blob-code blob-code-inner js-file-line">* Neither the name of GovDelivery nor the names of its</td>
|
889
|
+
</tr>
|
890
|
+
<tr>
|
891
|
+
<td id="L15" class="blob-num js-line-number" data-line-number="15"></td>
|
892
|
+
<td id="LC15" class="blob-code blob-code-inner js-file-line"> contributors may be used to endorse or promote products derived from</td>
|
893
|
+
</tr>
|
894
|
+
<tr>
|
895
|
+
<td id="L16" class="blob-num js-line-number" data-line-number="16"></td>
|
896
|
+
<td id="LC16" class="blob-code blob-code-inner js-file-line"> this software without specific prior written permission.</td>
|
897
|
+
</tr>
|
898
|
+
<tr>
|
899
|
+
<td id="L17" class="blob-num js-line-number" data-line-number="17"></td>
|
900
|
+
<td id="LC17" class="blob-code blob-code-inner js-file-line">
|
901
|
+
</td>
|
902
|
+
</tr>
|
903
|
+
<tr>
|
904
|
+
<td id="L18" class="blob-num js-line-number" data-line-number="18"></td>
|
905
|
+
<td id="LC18" class="blob-code blob-code-inner js-file-line">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</td>
|
906
|
+
</tr>
|
907
|
+
<tr>
|
908
|
+
<td id="L19" class="blob-num js-line-number" data-line-number="19"></td>
|
909
|
+
<td id="LC19" class="blob-code blob-code-inner js-file-line">AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</td>
|
910
|
+
</tr>
|
911
|
+
<tr>
|
912
|
+
<td id="L20" class="blob-num js-line-number" data-line-number="20"></td>
|
913
|
+
<td id="LC20" class="blob-code blob-code-inner js-file-line">IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</td>
|
914
|
+
</tr>
|
915
|
+
<tr>
|
916
|
+
<td id="L21" class="blob-num js-line-number" data-line-number="21"></td>
|
917
|
+
<td id="LC21" class="blob-code blob-code-inner js-file-line">DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</td>
|
918
|
+
</tr>
|
919
|
+
<tr>
|
920
|
+
<td id="L22" class="blob-num js-line-number" data-line-number="22"></td>
|
921
|
+
<td id="LC22" class="blob-code blob-code-inner js-file-line">FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL</td>
|
922
|
+
</tr>
|
923
|
+
<tr>
|
924
|
+
<td id="L23" class="blob-num js-line-number" data-line-number="23"></td>
|
925
|
+
<td id="LC23" class="blob-code blob-code-inner js-file-line">DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</td>
|
926
|
+
</tr>
|
927
|
+
<tr>
|
928
|
+
<td id="L24" class="blob-num js-line-number" data-line-number="24"></td>
|
929
|
+
<td id="LC24" class="blob-code blob-code-inner js-file-line">SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</td>
|
930
|
+
</tr>
|
931
|
+
<tr>
|
932
|
+
<td id="L25" class="blob-num js-line-number" data-line-number="25"></td>
|
933
|
+
<td id="LC25" class="blob-code blob-code-inner js-file-line">CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,</td>
|
934
|
+
</tr>
|
935
|
+
<tr>
|
936
|
+
<td id="L26" class="blob-num js-line-number" data-line-number="26"></td>
|
937
|
+
<td id="LC26" class="blob-code blob-code-inner js-file-line">OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</td>
|
938
|
+
</tr>
|
939
|
+
<tr>
|
940
|
+
<td id="L27" class="blob-num js-line-number" data-line-number="27"></td>
|
941
|
+
<td id="LC27" class="blob-code blob-code-inner js-file-line">OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</td>
|
942
|
+
</tr>
|
943
|
+
</table>
|
944
|
+
|
945
|
+
</div>
|
946
|
+
|
947
|
+
</div>
|
948
|
+
|
949
|
+
<button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="d-none">Jump to Line</button>
|
950
|
+
<div id="jump-to-line" style="display:none">
|
951
|
+
<!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /></div>
|
952
|
+
<input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line…" aria-label="Jump to line" autofocus>
|
953
|
+
<button type="submit" class="btn">Go</button>
|
954
|
+
</form></div>
|
955
|
+
|
956
|
+
</div>
|
957
|
+
<div class="modal-backdrop js-touch-events"></div>
|
958
|
+
</div>
|
959
|
+
|
960
|
+
|
961
|
+
</div>
|
962
|
+
</div>
|
963
|
+
|
964
|
+
</div>
|
965
|
+
|
966
|
+
<div class="container site-footer-container">
|
967
|
+
<div class="site-footer" role="contentinfo">
|
968
|
+
<ul class="site-footer-links float-right">
|
969
|
+
<li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact GitHub</a></li>
|
970
|
+
<li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
|
971
|
+
<li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
|
972
|
+
<li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
|
973
|
+
<li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
|
974
|
+
<li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
|
975
|
+
|
976
|
+
</ul>
|
977
|
+
|
978
|
+
<a href="https://github.com" aria-label="Homepage" class="site-footer-mark" title="GitHub">
|
979
|
+
<svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
|
980
|
+
</a>
|
981
|
+
<ul class="site-footer-links">
|
982
|
+
<li>© 2017 <span title="0.07356s from github-fe-c5e6852.cp1-iad.github.net">GitHub</span>, Inc.</li>
|
983
|
+
<li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
|
984
|
+
<li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
|
985
|
+
<li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
|
986
|
+
<li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
|
987
|
+
<li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
|
988
|
+
</ul>
|
989
|
+
</div>
|
990
|
+
</div>
|
991
|
+
|
992
|
+
|
993
|
+
|
994
|
+
|
995
|
+
|
996
|
+
<div id="ajax-error-message" class="ajax-error-message flash flash-error">
|
997
|
+
<svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
|
998
|
+
<button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
|
999
|
+
<svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
|
1000
|
+
</button>
|
1001
|
+
You can't perform that action at this time.
|
1002
|
+
</div>
|
1003
|
+
|
1004
|
+
|
1005
|
+
<script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/compat-8e19569aacd39e737a14c8515582825f3c90d1794c0e5539f9b525b8eb8b5a8e.js"></script>
|
1006
|
+
<script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-d23e32e482112ba5e3ea9bd8dc7e555680116a74e002746ac91f41a4e5875a9b.js"></script>
|
1007
|
+
<script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-6ca6f62765e15635c351212e3512e67fddeee7571f9970e0a78ce7dc67ff1d69.js"></script>
|
1008
|
+
|
1009
|
+
|
1010
|
+
|
1011
|
+
|
1012
|
+
<div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner d-none">
|
1013
|
+
<svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
|
1014
|
+
<span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
|
1015
|
+
<span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
|
1016
|
+
</div>
|
1017
|
+
<div class="facebox" id="facebox" style="display:none;">
|
1018
|
+
<div class="facebox-popup">
|
1019
|
+
<div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
|
1020
|
+
</div>
|
1021
|
+
<button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
|
1022
|
+
<svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
|
1023
|
+
</button>
|
1024
|
+
</div>
|
1025
|
+
</div>
|
1026
|
+
|
1027
|
+
</body>
|
1028
|
+
</html>
|
1029
|
+
|