ronin-web-user_agents 0.1.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.github/workflows/ruby.yml +31 -0
- data/.gitignore +14 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/.yardopts +1 -0
- data/COPYING.txt +165 -0
- data/ChangeLog.md +5 -0
- data/Gemfile +26 -0
- data/README.md +177 -0
- data/Rakefile +34 -0
- data/corpus/.gitkeep +0 -0
- data/data/android/devices.txt +1393 -0
- data/data/chrome/versions.txt +394 -0
- data/data/firefox/langs.txt +125 -0
- data/data/firefox/versions.txt +584 -0
- data/gemspec.yml +21 -0
- data/lib/ronin/web/user_agents/chrome.rb +301 -0
- data/lib/ronin/web/user_agents/data_dir.rb +30 -0
- data/lib/ronin/web/user_agents/firefox.rb +360 -0
- data/lib/ronin/web/user_agents/google_bot.rb +140 -0
- data/lib/ronin/web/user_agents/os/android.rb +79 -0
- data/lib/ronin/web/user_agents/os/linux.rb +52 -0
- data/lib/ronin/web/user_agents/os/mac_os.rb +116 -0
- data/lib/ronin/web/user_agents/os/windows.rb +53 -0
- data/lib/ronin/web/user_agents/version.rb +28 -0
- data/lib/ronin/web/user_agents.rb +142 -0
- data/ronin-web-user_agents.gemspec +61 -0
- data/scripts/index_user_agents +281 -0
- data/spec/chrome_spec.rb +511 -0
- data/spec/firefox_spec.rb +414 -0
- data/spec/google_bot_spec.rb +231 -0
- data/spec/os/android_spec.rb +55 -0
- data/spec/os/linux_spec.rb +48 -0
- data/spec/os/mac_os_spec.rb +73 -0
- data/spec/os/windows_spec.rb +52 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/user_agents_spec.rb +49 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 211ce690829536496ff38bb3b42eeb7aca3fc6288e43def11bfbba17f28895e5
|
4
|
+
data.tar.gz: e9085b315d3f470f0d521864926ded3bdbfd0c2ea033d19795abace19645a294
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a4690d6f464cae3c3fb33a2ab1904147ec2c41cd148e90a609b52e3bf28d8ef7b5bf3197a2c88de88b56b67cb6aca6d4bab08c564692d9341df658f035685d5b
|
7
|
+
data.tar.gz: 531decd58766e34c94b7e558b1bc3d2ef236edaf354e48f9b663e1ed8a7ee87d71d98f543962a71278a0f5f21a604511d4f2255cca8e2dda9b9612b4905a4333
|
data/.document
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on: [ push, pull_request ]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
tests:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
strategy:
|
9
|
+
fail-fast: false
|
10
|
+
matrix:
|
11
|
+
ruby:
|
12
|
+
- '3.0'
|
13
|
+
- '3.1'
|
14
|
+
- '3.2'
|
15
|
+
- jruby
|
16
|
+
- truffleruby
|
17
|
+
name: Ruby ${{ matrix.ruby }}
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
24
|
+
- name: Install libsqlite3
|
25
|
+
run: |
|
26
|
+
sudo apt update -y && \
|
27
|
+
sudo apt install -y --no-install-recommends --no-install-suggests libsqlite3-dev
|
28
|
+
- name: Install dependencies
|
29
|
+
run: bundle install --jobs 4 --retry 3
|
30
|
+
- name: Run tests
|
31
|
+
run: bundle exec rake test
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour --format documentation
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-3.1
|
data/.yardopts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--markup markdown --title 'Ronin Web UserAgents Documentation' --protected
|
data/COPYING.txt
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
2
|
+
Version 3, 29 June 2007
|
3
|
+
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
6
|
+
of this license document, but changing it is not allowed.
|
7
|
+
|
8
|
+
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
11
|
+
License, supplemented by the additional permissions listed below.
|
12
|
+
|
13
|
+
0. Additional Definitions.
|
14
|
+
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
17
|
+
General Public License.
|
18
|
+
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
20
|
+
other than an Application or a Combined Work as defined below.
|
21
|
+
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
25
|
+
of using an interface provided by the Library.
|
26
|
+
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
28
|
+
Application with the Library. The particular version of the Library
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
30
|
+
Version".
|
31
|
+
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
35
|
+
based on the Application, and not on the Linked Version.
|
36
|
+
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
38
|
+
object code and/or source code for the Application, including any data
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
41
|
+
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
43
|
+
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
46
|
+
|
47
|
+
2. Conveying Modified Versions.
|
48
|
+
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
51
|
+
that uses the facility (other than as an argument passed when the
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
53
|
+
version:
|
54
|
+
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
56
|
+
ensure that, in the event an Application does not supply the
|
57
|
+
function or data, the facility still operates, and performs
|
58
|
+
whatever part of its purpose remains meaningful, or
|
59
|
+
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
61
|
+
this License applicable to that copy.
|
62
|
+
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
64
|
+
|
65
|
+
The object code form of an Application may incorporate material from
|
66
|
+
a header file that is part of the Library. You may convey such object
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
68
|
+
material is not limited to numerical parameters, data structure
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
71
|
+
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
73
|
+
Library is used in it and that the Library and its use are
|
74
|
+
covered by this License.
|
75
|
+
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
77
|
+
document.
|
78
|
+
|
79
|
+
4. Combined Works.
|
80
|
+
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
82
|
+
taken together, effectively do not restrict modification of the
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
85
|
+
the following:
|
86
|
+
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
88
|
+
the Library is used in it and that the Library and its use are
|
89
|
+
covered by this License.
|
90
|
+
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
92
|
+
document.
|
93
|
+
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
95
|
+
execution, include the copyright notice for the Library among
|
96
|
+
these notices, as well as a reference directing the user to the
|
97
|
+
copies of the GNU GPL and this license document.
|
98
|
+
|
99
|
+
d) Do one of the following:
|
100
|
+
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
102
|
+
License, and the Corresponding Application Code in a form
|
103
|
+
suitable for, and under terms that permit, the user to
|
104
|
+
recombine or relink the Application with a modified version of
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
107
|
+
Corresponding Source.
|
108
|
+
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
111
|
+
a copy of the Library already present on the user's computer
|
112
|
+
system, and (b) will operate properly with a modified version
|
113
|
+
of the Library that is interface-compatible with the Linked
|
114
|
+
Version.
|
115
|
+
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
117
|
+
be required to provide such information under section 6 of the
|
118
|
+
GNU GPL, and only to the extent that such information is
|
119
|
+
necessary to install and execute a modified version of the
|
120
|
+
Combined Work produced by recombining or relinking the
|
121
|
+
Application with a modified version of the Linked Version. (If
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
126
|
+
for conveying Corresponding Source.)
|
127
|
+
|
128
|
+
5. Combined Libraries.
|
129
|
+
|
130
|
+
You may place library facilities that are a work based on the
|
131
|
+
Library side by side in a single library together with other library
|
132
|
+
facilities that are not Applications and are not covered by this
|
133
|
+
License, and convey such a combined library under terms of your
|
134
|
+
choice, if you do both of the following:
|
135
|
+
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
137
|
+
on the Library, uncombined with any other library facilities,
|
138
|
+
conveyed under the terms of this License.
|
139
|
+
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
141
|
+
is a work based on the Library, and explaining where to find the
|
142
|
+
accompanying uncombined form of the same work.
|
143
|
+
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
145
|
+
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
148
|
+
versions will be similar in spirit to the present version, but may
|
149
|
+
differ in detail to address new problems or concerns.
|
150
|
+
|
151
|
+
Each version is given a distinguishing version number. If the
|
152
|
+
Library as you received it specifies that a certain numbered version
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
154
|
+
applies to it, you have the option of following the terms and
|
155
|
+
conditions either of that published version or of any later version
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
160
|
+
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
164
|
+
permanent authorization for you to choose that version for the
|
165
|
+
Library.
|
data/ChangeLog.md
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gemspec
|
4
|
+
|
5
|
+
platform :jruby do
|
6
|
+
gem 'jruby-openssl', '~> 0.7'
|
7
|
+
end
|
8
|
+
|
9
|
+
group :development do
|
10
|
+
gem 'rake'
|
11
|
+
gem 'rubygems-tasks', '~> 0.2'
|
12
|
+
|
13
|
+
gem 'rspec', '~> 3.0'
|
14
|
+
gem 'simplecov', '~> 0.20'
|
15
|
+
|
16
|
+
gem 'kramdown', '~> 2.0'
|
17
|
+
gem 'kramdown-man', '~> 0.1'
|
18
|
+
|
19
|
+
gem 'redcarpet', platform: :mri
|
20
|
+
gem 'yard', '~> 0.9'
|
21
|
+
gem 'yard-spellcheck', require: false
|
22
|
+
|
23
|
+
gem 'dead_end', require: false
|
24
|
+
gem 'sord', require: false, platform: :mri
|
25
|
+
gem 'stackprof', require: false, platform: :mri
|
26
|
+
end
|
data/README.md
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
# ronin-web-user_agents
|
2
|
+
|
3
|
+
[![CI](https://github.com/ronin-rb/ronin-web-user_agents/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-web-user_agents/actions/workflows/ruby.yml)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-web-user_agents.svg)](https://codeclimate.com/github/ronin-rb/ronin-web-user_agents)
|
5
|
+
|
6
|
+
* [Website](https://ronin-rb.dev/)
|
7
|
+
* [Source](https://github.com/ronin-rb/ronin-web-user_agents)
|
8
|
+
* [Issues](https://github.com/ronin-rb/ronin-web-user_agents/issues)
|
9
|
+
* [Documentation](https://ronin-rb.dev/docs/ronin-web-user_agents/frames)
|
10
|
+
* [Discord](https://discord.gg/6WAb3PsVX9) |
|
11
|
+
[Twitter](https://twitter.com/ronin_rb) |
|
12
|
+
[Mastodon](https://infosec.exchange/@ronin_rb)
|
13
|
+
|
14
|
+
## Description
|
15
|
+
|
16
|
+
Yet another `User-Agent` string generator library.
|
17
|
+
|
18
|
+
## Features
|
19
|
+
|
20
|
+
* Generates random but realistic `User-Agent` strings from known values.
|
21
|
+
* Small and fast.
|
22
|
+
* Zero dependencies.
|
23
|
+
* 93% documentation coverage.
|
24
|
+
* 99% test coverage.
|
25
|
+
|
26
|
+
## Examples
|
27
|
+
|
28
|
+
### Random
|
29
|
+
|
30
|
+
Get a random `User-Agent` string:
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
user_agent = Ronin::Web::UserAgents.random
|
34
|
+
# => "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.230 Safari/537.36"
|
35
|
+
```
|
36
|
+
|
37
|
+
Get a random Chrome `User-Agent` string:
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
user_agent = Ronin::Web::UserAgents.chrome.random
|
41
|
+
# => "Mozilla/5.0 (Linux; Android 5.1.1; Redmi Note 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4688.3 Mobile Safari/537.36"
|
42
|
+
```
|
43
|
+
|
44
|
+
Build a specific Chrome `User-Agent` for Android 10.0 string:
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
Ronin::Web::UserAgents.chrome.build(chrome_version: '100.0.4758.81', os: :
|
48
|
+
android, os_version: '10.0')
|
49
|
+
# => "Mozilla/5.0 (Linux; Android 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.81 Mobile Safari/537.36"
|
50
|
+
```
|
51
|
+
|
52
|
+
Get a random Firefox `User-Agent` string:
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
user_agent = Ronin::Web::UserAgents.firefox.random
|
56
|
+
# => "Mozilla/5.0 (Windows NT 6.1; rv:78.0.2) Gecko/20100101 Firefox/78.0.2"
|
57
|
+
```
|
58
|
+
|
59
|
+
Build a specific Firefox `User-Agent` string for Windows 10:
|
60
|
+
|
61
|
+
```ruby
|
62
|
+
Ronin::Web::UserAgents.firefox.build(firefox_version: '95.0', os: :windows, os_version: 10)
|
63
|
+
# => "Mozilla/5.0 (Windows NT 10.0; rv:100.0.4758.81) Gecko/20100101 Firefox/95.0"
|
64
|
+
```
|
65
|
+
|
66
|
+
Get a random `googlebot` `User-Agent` string:
|
67
|
+
|
68
|
+
```ruby
|
69
|
+
user_agent = Ronin::Web::UserAgents.google_bot.random
|
70
|
+
# => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleBot/2.1; +http://www.google.com/bot.html) Chrome/94.0.4602.7 Safari/537.36"
|
71
|
+
```
|
72
|
+
|
73
|
+
Spoof [net/http]'s `User-Agent` string:
|
74
|
+
|
75
|
+
```ruby
|
76
|
+
require 'net/https'
|
77
|
+
|
78
|
+
uri = URI("https://www.whatismybrowser.com/detect/what-is-my-user-agent")
|
79
|
+
headers = {'User-Agent' => Ronin::Web::UserAgents.chrome.random}
|
80
|
+
response = Net::HTTP.get(uri,headers)
|
81
|
+
```
|
82
|
+
|
83
|
+
### Spoofing
|
84
|
+
|
85
|
+
Spoof [open-uri]'s `User-Agent` string:
|
86
|
+
|
87
|
+
```ruby
|
88
|
+
require 'open-uri'
|
89
|
+
|
90
|
+
url = "https://www.whatismybrowser.com/detect/what-is-my-user-agent"
|
91
|
+
headers = {'User-Agent' => Ronin::Web::UserAgents.chrome.random}
|
92
|
+
temp_file = URI.open(url,headers)
|
93
|
+
```
|
94
|
+
|
95
|
+
Spoof [mechanize]'s `User-Agent` string:
|
96
|
+
|
97
|
+
```ruby
|
98
|
+
require 'mechanize'
|
99
|
+
|
100
|
+
agent = Mechanize.new
|
101
|
+
agent.user_agent = Ronin::Web::UserAgents.chrome.random
|
102
|
+
page = agent.get("https://www.whatismybrowser.com/detect/what-is-my-user-agent")
|
103
|
+
```
|
104
|
+
|
105
|
+
Spoof [rest-client]'s `User-Agent` string:
|
106
|
+
|
107
|
+
```ruby
|
108
|
+
require 'rest-client'
|
109
|
+
|
110
|
+
RestClient.get "https://www.whatismybrowser.com/detect/what-is-my-user-agent",
|
111
|
+
user_agent: Ronin::Web::UserAgents.chrome.random
|
112
|
+
```
|
113
|
+
|
114
|
+
Spoof `curl`'s `User-Agent` string:
|
115
|
+
|
116
|
+
```shell
|
117
|
+
user_agent="$(ruby -Ilib -r ronin/web/user_agents -e 'print Ronin::Web::UserAgents.chrome.random')"
|
118
|
+
|
119
|
+
curl --user-agent "$user_agent" https://www.whatismybrowser.com/detect/what-is-my-user-agent
|
120
|
+
```
|
121
|
+
|
122
|
+
[net/http]: https://rubydoc.info/stdlib/net
|
123
|
+
[open-uri]: https://rubydoc.info/stdlib/open-uri
|
124
|
+
[mechanize]: https://github.com/sparklemotion/mechanize#readme
|
125
|
+
[rest-client]: https://github.com/rest-client/rest-client#readme
|
126
|
+
|
127
|
+
## Requirements
|
128
|
+
|
129
|
+
* [Ruby] >= 3.0.0
|
130
|
+
|
131
|
+
## Install
|
132
|
+
|
133
|
+
```shell
|
134
|
+
$ gem install ronin-web-user_agents
|
135
|
+
```
|
136
|
+
|
137
|
+
### Gemfile
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
gem 'ronin-web-user_agents', '~> 0.1'
|
141
|
+
```
|
142
|
+
|
143
|
+
### gemspec
|
144
|
+
|
145
|
+
```ruby
|
146
|
+
gem.add_dependency 'ronin-web-user_agents', '~> 0.1'
|
147
|
+
```
|
148
|
+
|
149
|
+
## Development
|
150
|
+
|
151
|
+
1. [Fork It!](https://github.com/ronin-rb/ronin-web-user_agents/fork)
|
152
|
+
2. Clone It!
|
153
|
+
3. `cd ronin-web-user_agents/`
|
154
|
+
4. `bundle install`
|
155
|
+
5. `git checkout -b my_feature`
|
156
|
+
6. Code It!
|
157
|
+
7. `bundle exec rake spec`
|
158
|
+
8. `git push origin my_feature`
|
159
|
+
|
160
|
+
## License
|
161
|
+
|
162
|
+
Copyright (c) 2006-2022 Hal Brodigan (postmodern.mod3@gmail.com)
|
163
|
+
|
164
|
+
ronin-web-user_agents is free software: you can redistribute it and/or modify
|
165
|
+
it under the terms of the GNU Lesser General Public License as published
|
166
|
+
by the Free Software Foundation, either version 3 of the License, or
|
167
|
+
(at your option) any later version.
|
168
|
+
|
169
|
+
ronin-web-user_agents is distributed in the hope that it will be useful,
|
170
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
171
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
172
|
+
GNU Lesser General Public License for more details.
|
173
|
+
|
174
|
+
You should have received a copy of the GNU Lesser General Public License
|
175
|
+
along with ronin-web-user_agents. If not, see <https://www.gnu.org/licenses/>.
|
176
|
+
|
177
|
+
[Ruby]: https://www.ruby-lang.org
|
data/Rakefile
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'bundler'
|
5
|
+
rescue LoadError => e
|
6
|
+
warn e.message
|
7
|
+
warn "Run `gem install bundler` to install Bundler"
|
8
|
+
exit -1
|
9
|
+
end
|
10
|
+
|
11
|
+
begin
|
12
|
+
Bundler.setup(:development)
|
13
|
+
rescue Bundler::BundlerError => e
|
14
|
+
warn e.message
|
15
|
+
warn "Run `bundle install` to install missing gems"
|
16
|
+
exit e.status_code
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'rake'
|
20
|
+
|
21
|
+
require 'rubygems/tasks'
|
22
|
+
Gem::Tasks.new(sign: {checksum: true, pgp: true})
|
23
|
+
|
24
|
+
require 'rspec/core/rake_task'
|
25
|
+
RSpec::Core::RakeTask.new
|
26
|
+
task :test => :spec
|
27
|
+
task :default => :spec
|
28
|
+
|
29
|
+
require 'yard'
|
30
|
+
YARD::Rake::YardocTask.new
|
31
|
+
task :docs => :yard
|
32
|
+
|
33
|
+
require 'kramdown/man/task'
|
34
|
+
Kramdown::Man::Task.new
|
data/corpus/.gitkeep
ADDED
File without changes
|