boido 1.0.0.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 45bc09a883c09cb739b005851fb79087bfdfaa7df4d92b5a773d7b70bf3777ba
4
+ data.tar.gz: 804c5b59397defcd6efbc22191f3ffe28997c63f7f767a0eabeb5a320b3cc612
5
+ SHA512:
6
+ metadata.gz: 0bfd1f61b3aacb3461a22d4b715aa59f6ea48c562e71875fd7f779520212e8c065589e2cbfd817ce815d5e356188da0067d5247e170ddee55c8e3d77748c6d63
7
+ data.tar.gz: 80ca64c40ff5383dab63e86a471a37dbfc2c562eea3c78aadb767c5b40fadfa16e4353e193776a6bb24cd33c824029137e87f643b9b8692123f18fc0645125fc
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.jekyll-cache/
3
+ /.sass-cache/
4
+ /.yardoc
5
+ /_site/
6
+ /_yardoc/
7
+ /coverage/
8
+ /doc/
9
+ /pkg/
10
+ /spec/reports/
11
+ /tmp/
12
+ *.gem
data/CHANGELOG.md ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in void.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ boido (1.0.0.pre.alpha)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (12.3.3)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ boido!
16
+ rake (~> 12.0)
17
+
18
+ BUNDLED WITH
19
+ 2.1.4
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Boido
2
+
3
+ Basic layout for static websites.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'boido'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install boido
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,9 @@
1
+ <!doctype html>
2
+ <html lang="{{ lang }}">
3
+ <head>
4
+ <meta charset="{{ charset }}">
5
+ </head>
6
+ <body>
7
+ {{ content }}
8
+ </body>
9
+ </html>
data/boido.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "boido"
3
+ spec.version = "1.0.0-alpha"
4
+ spec.authors = ["Andrey Petrov"]
5
+ spec.email = ["andrey@petrov.works"]
6
+
7
+ spec.summary = %q{Basic layout for static websites.}
8
+ spec.homepage = "https://github.com/andreythegeek/boido"
9
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
10
+
11
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
12
+
13
+ spec.metadata["homepage_uri"] = spec.homepage
14
+ spec.metadata["source_code_uri"] = "https://github.com/andreythegeek/boido.git"
15
+ spec.metadata["changelog_uri"] = "https://github.com/andreythegeek/boido/blob/master/CHANGELOG.md"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: boido
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.pre.alpha
5
+ platform: ruby
6
+ authors:
7
+ - Andrey Petrov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - andrey@petrov.works
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - CHANGELOG.md
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - README.md
25
+ - Rakefile
26
+ - _layouts/default.html
27
+ - boido.gemspec
28
+ homepage: https://github.com/andreythegeek/boido
29
+ licenses: []
30
+ metadata:
31
+ allowed_push_host: https://rubygems.org
32
+ homepage_uri: https://github.com/andreythegeek/boido
33
+ source_code_uri: https://github.com/andreythegeek/boido.git
34
+ changelog_uri: https://github.com/andreythegeek/boido/blob/master/CHANGELOG.md
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 2.3.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">"
47
+ - !ruby/object:Gem::Version
48
+ version: 1.3.1
49
+ requirements: []
50
+ rubygems_version: 3.0.3
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Basic layout for static websites.
54
+ test_files: []