fasta 0.1.7 → 0.1.8
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 +4 -4
- metadata +4 -63
- data/.gitignore +0 -11
- data/.idea/fasta.iml +0 -30
- data/.idea/inspectionProfiles/Project_Default.xml +0 -8
- data/.idea/misc.xml +0 -7
- data/.idea/modules.xml +0 -8
- data/.idea/workspace.xml +0 -838
- data/.rspec +0 -3
- data/.travis.yml +0 -7
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/LICENSE.txt +0 -21
- data/README.md +0 -43
- data/Rakefile +0 -7
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/exe/fasta +0 -5
- data/fasta.gemspec +0 -48
- data/lib/fasta/app/endpoints/model/create.rb +0 -5
- data/lib/fasta/app/endpoints/model/delete.rb +0 -7
- data/lib/fasta/app/endpoints/model/index.rb +0 -5
- data/lib/fasta/app/endpoints/model/patch.rb +0 -7
- data/lib/fasta/app/endpoints/model/put.rb +0 -7
- data/lib/fasta/app/endpoints/model/show.rb +0 -7
- data/lib/fasta/app/endpoints/model.rb +0 -17
- data/lib/fasta/cli.rb +0 -22
- data/lib/fasta/server/actions/create.rb +0 -17
- data/lib/fasta/server/actions/delete.rb +0 -22
- data/lib/fasta/server/actions/index.rb +0 -13
- data/lib/fasta/server/actions/patch.rb +0 -18
- data/lib/fasta/server/actions/put.rb +0 -23
- data/lib/fasta/server/actions/show.rb +0 -14
- data/lib/fasta/server/actions.rb +0 -13
- data/lib/fasta/server/core/read.rb +0 -13
- data/lib/fasta/server/core/responder.rb +0 -100
- data/lib/fasta/server/core/write.rb +0 -38
- data/lib/fasta/version.rb +0 -3
- data/lib/fasta.rb +0 -7
- data/templates/Gemfile +0 -4
- data/templates/Procfile +0 -1
- data/templates/Rakefile +0 -2
- data/templates/app/endpoints/user/boards.rb +0 -11
- data/templates/app/endpoints/user/create.rb +0 -5
- data/templates/app/endpoints/user/delete.rb +0 -5
- data/templates/app/endpoints/user/index.rb +0 -3
- data/templates/app/endpoints/user/patch.rb +0 -5
- data/templates/app/endpoints/user/put.rb +0 -5
- data/templates/app/endpoints/user/show.rb +0 -5
- data/templates/app/endpoints/user.rb +0 -3
- data/templates/application.rb +0 -6
- data/templates/boot.ru +0 -3
- data/templates/config/database.yml +0 -22
- data/templates/config/environment.rb +0 -12
- data/templates/config/environments/development.rb +0 -2
- data/templates/config/environments/production.rb +0 -4
- data/templates/config/environments/test.rb +0 -2
- data/templates/config/puma.rb +0 -12
- data/templates/config/routes.rb +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 441cbb3fe7e91e91805b7023854272bd8b9f35bceff81d6970ae5868a6019742
|
4
|
+
data.tar.gz: 79a536cc82153a7a3f07760e967606ca5ba29350a43b97c49b8be132d1738c4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4d76b12da17b6c47bdf5bb774bde2245e9d8873c92bd0aa23a3006f23c8b25fedc92c49e0600b0c1afb5def20c992f07c38cbf98f52098aa619444ff88dc6bf
|
7
|
+
data.tar.gz: 39dfb45a32bc20d85e0abacdf8e06731cbfffcf3ec67b5bed1d3433107301987de98351a6c4a747d6a319a787014076ae1c2ce54d68d8a7647eab40c6309db8f
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fasta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yaro
|
@@ -167,68 +167,10 @@ dependencies:
|
|
167
167
|
description: Rack Server API
|
168
168
|
email:
|
169
169
|
- osyaroslav@gmail.com
|
170
|
-
executables:
|
171
|
-
- fasta
|
170
|
+
executables: []
|
172
171
|
extensions: []
|
173
172
|
extra_rdoc_files: []
|
174
|
-
files:
|
175
|
-
- ".gitignore"
|
176
|
-
- ".idea/fasta.iml"
|
177
|
-
- ".idea/inspectionProfiles/Project_Default.xml"
|
178
|
-
- ".idea/misc.xml"
|
179
|
-
- ".idea/modules.xml"
|
180
|
-
- ".idea/workspace.xml"
|
181
|
-
- ".rspec"
|
182
|
-
- ".travis.yml"
|
183
|
-
- CODE_OF_CONDUCT.md
|
184
|
-
- Gemfile
|
185
|
-
- LICENSE.txt
|
186
|
-
- README.md
|
187
|
-
- Rakefile
|
188
|
-
- bin/console
|
189
|
-
- bin/setup
|
190
|
-
- exe/fasta
|
191
|
-
- fasta.gemspec
|
192
|
-
- lib/fasta.rb
|
193
|
-
- lib/fasta/app/endpoints/model.rb
|
194
|
-
- lib/fasta/app/endpoints/model/create.rb
|
195
|
-
- lib/fasta/app/endpoints/model/delete.rb
|
196
|
-
- lib/fasta/app/endpoints/model/index.rb
|
197
|
-
- lib/fasta/app/endpoints/model/patch.rb
|
198
|
-
- lib/fasta/app/endpoints/model/put.rb
|
199
|
-
- lib/fasta/app/endpoints/model/show.rb
|
200
|
-
- lib/fasta/cli.rb
|
201
|
-
- lib/fasta/server/actions.rb
|
202
|
-
- lib/fasta/server/actions/create.rb
|
203
|
-
- lib/fasta/server/actions/delete.rb
|
204
|
-
- lib/fasta/server/actions/index.rb
|
205
|
-
- lib/fasta/server/actions/patch.rb
|
206
|
-
- lib/fasta/server/actions/put.rb
|
207
|
-
- lib/fasta/server/actions/show.rb
|
208
|
-
- lib/fasta/server/core/read.rb
|
209
|
-
- lib/fasta/server/core/responder.rb
|
210
|
-
- lib/fasta/server/core/write.rb
|
211
|
-
- lib/fasta/version.rb
|
212
|
-
- templates/Gemfile
|
213
|
-
- templates/Procfile
|
214
|
-
- templates/Rakefile
|
215
|
-
- templates/app/endpoints/user.rb
|
216
|
-
- templates/app/endpoints/user/boards.rb
|
217
|
-
- templates/app/endpoints/user/create.rb
|
218
|
-
- templates/app/endpoints/user/delete.rb
|
219
|
-
- templates/app/endpoints/user/index.rb
|
220
|
-
- templates/app/endpoints/user/patch.rb
|
221
|
-
- templates/app/endpoints/user/put.rb
|
222
|
-
- templates/app/endpoints/user/show.rb
|
223
|
-
- templates/application.rb
|
224
|
-
- templates/boot.ru
|
225
|
-
- templates/config/database.yml
|
226
|
-
- templates/config/environment.rb
|
227
|
-
- templates/config/environments/development.rb
|
228
|
-
- templates/config/environments/production.rb
|
229
|
-
- templates/config/environments/test.rb
|
230
|
-
- templates/config/puma.rb
|
231
|
-
- templates/config/routes.rb
|
173
|
+
files: []
|
232
174
|
homepage: http://github.com/vergilet/fasta
|
233
175
|
licenses:
|
234
176
|
- MIT
|
@@ -237,7 +179,6 @@ post_install_message:
|
|
237
179
|
rdoc_options: []
|
238
180
|
require_paths:
|
239
181
|
- lib
|
240
|
-
- tasks
|
241
182
|
required_ruby_version: !ruby/object:Gem::Requirement
|
242
183
|
requirements:
|
243
184
|
- - ">="
|
@@ -250,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
191
|
version: '0'
|
251
192
|
requirements: []
|
252
193
|
rubyforge_project:
|
253
|
-
rubygems_version: 2.7.
|
194
|
+
rubygems_version: 2.7.7
|
254
195
|
signing_key:
|
255
196
|
specification_version: 4
|
256
197
|
summary: Fasta is a mini web framework
|
data/.gitignore
DELETED
data/.idea/fasta.iml
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$" />
|
8
|
-
<orderEntry type="inheritedJdk" />
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
-
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.0.5, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
11
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
12
|
-
<orderEntry type="library" scope="PROVIDED" name="hanami-router (v1.2.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
13
|
-
<orderEntry type="library" scope="PROVIDED" name="http_router (v0.11.2, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="logger (v1.2.8, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="oj (v3.6.11, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="pg (v1.1.3, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="puma (v3.12.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="rack (v2.0.5, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.8.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.8.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.8.1, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.8.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.8.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="sequel (v5.13.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="thor (v0.20.0, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="transproc (v1.0.2, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="url_mount (v0.2.1, RVM: ruby-2.5.1 [fasta]) [gem]" level="application" />
|
29
|
-
</component>
|
30
|
-
</module>
|
@@ -1,8 +0,0 @@
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
2
|
-
<profile version="1.0">
|
3
|
-
<option name="myName" value="Project Default" />
|
4
|
-
<inspection_tool class="Rubocop" enabled="false" level="ERROR" enabled_by_default="true">
|
5
|
-
<scope name="Project Files" level="ERROR" enabled="true" />
|
6
|
-
</inspection_tool>
|
7
|
-
</profile>
|
8
|
-
</component>
|
data/.idea/misc.xml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="JavaScriptSettings">
|
4
|
-
<option name="languageLevel" value="ES6" />
|
5
|
-
</component>
|
6
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.5.1 [fasta]" project-jdk-type="RUBY_SDK" />
|
7
|
-
</project>
|
data/.idea/modules.xml
DELETED