adding initial fast-api

This commit is contained in:
2020-02-17 02:37:02 +00:00
commit 584d6bcc26
1975 changed files with 424591 additions and 0 deletions

14
fast-api/node_modules/bootswatch/bootswatch.gemspec generated vendored Executable file
View File

@@ -0,0 +1,14 @@
require "json"
$package = JSON.parse(File.read(File.expand_path("package.json", __dir__)))
Gem::Specification.new do |s|
s.name = "bootswatch"
s.version = $package["version"].tr("+", ".")
s.author = $package["author"]
s.homepage = $package["homepage"]
s.summary = $package["description"]
s.license = $package["license"]
s.files = Dir["{dist}/**/*", "LICENSE", "README.md", "package.json"]
s.require_paths = ["dist"]
end