ffast 0.0.2 → 0.0.3
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 +5 -5
- data/.travis.yml +2 -2
- data/README.md +42 -18
- data/bin/fast +30 -9
- data/docs/command_line.md +112 -0
- data/docs/experiments.md +147 -0
- data/docs/index.md +356 -0
- data/docs/similarity_tutorial.md +174 -0
- data/docs/syntax.md +370 -0
- data/examples/let_it_be_experiment.rb +11 -0
- data/fast.gemspec +2 -2
- data/lib/fast.rb +30 -4
- data/mkdocs.yml +21 -0
- metadata +11 -4
data/mkdocs.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
site_name: Fast
|
2
|
+
repo_url: https://github.com/jonatas/fast
|
3
|
+
edit_uri: edit/master/docs/
|
4
|
+
google_analytics: ['UA-125089529-1', 'auto']
|
5
|
+
theme:
|
6
|
+
name: material
|
7
|
+
palette:
|
8
|
+
primary: indigo
|
9
|
+
accent: pink
|
10
|
+
markdown_extensions:
|
11
|
+
- admonition
|
12
|
+
- codehilite:
|
13
|
+
guess_lang: false
|
14
|
+
- toc:
|
15
|
+
permalink: true
|
16
|
+
nav:
|
17
|
+
- Introduction: index.md
|
18
|
+
- Syntax: syntax.md
|
19
|
+
- Command Line: command_line.md
|
20
|
+
- Experiments: experiments.md
|
21
|
+
- Code Similarity: similarity_tutorial.md
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jônatas Davi Paganini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -87,7 +87,7 @@ dependencies:
|
|
87
87
|
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
|
-
type: :
|
90
|
+
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
@@ -146,13 +146,20 @@ files:
|
|
146
146
|
- bin/fast
|
147
147
|
- bin/fast-experiment
|
148
148
|
- bin/setup
|
149
|
+
- docs/command_line.md
|
150
|
+
- docs/experiments.md
|
151
|
+
- docs/index.md
|
152
|
+
- docs/similarity_tutorial.md
|
153
|
+
- docs/syntax.md
|
149
154
|
- examples/experimental_replacement.rb
|
150
155
|
- examples/find_usage.rb
|
156
|
+
- examples/let_it_be_experiment.rb
|
151
157
|
- examples/method_complexity.rb
|
152
158
|
- experiments/let_it_be_experiment.rb
|
153
159
|
- experiments/remove_useless_hook.rb
|
154
160
|
- fast.gemspec
|
155
161
|
- lib/fast.rb
|
162
|
+
- mkdocs.yml
|
156
163
|
homepage:
|
157
164
|
licenses:
|
158
165
|
- MIT
|
@@ -174,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
181
|
version: '0'
|
175
182
|
requirements: []
|
176
183
|
rubyforge_project:
|
177
|
-
rubygems_version: 2.6
|
184
|
+
rubygems_version: 2.7.6
|
178
185
|
signing_key:
|
179
186
|
specification_version: 4
|
180
187
|
summary: 'FAST: Find by AST.'
|