bootstrap-dev-preview 0.1.2 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c47735e424ac440604b9f8315757244779157549efa5b7f6fdd4fe6feb720398
4
- data.tar.gz: 8258b666ca41719e906e8da7556ddc4a75df7a36d21fefdae0d55f73112314e4
3
+ metadata.gz: c8a585cd1dd69ca1ba3e4c0b513a07dbaabd6bd8179b1ba9c892a4cce8f61b07
4
+ data.tar.gz: f3f42c89be2815ff821f06a0948aa7d27da3e01d28aaa4a0f401b71ee149ecc7
5
5
  SHA512:
6
- metadata.gz: 3161849ba241b04cd07b360e5d51b1e7765d605a75f75b3b2eb75fe90908d57c699a969603c152c0248d3be9b15a1cffae60248cda614e2f63a098f78661682a
7
- data.tar.gz: b5a5f94da1b479d4615ce0bb0a2f8c68ad4558a70bb15ebaf9e2da914a23f62aedf162455e76caba9c2195e80221aaa275ad17b7bfec21a81081a16e78d25c27
6
+ metadata.gz: e12c181fb10be242e428af739661d1a43e75e95e38c6a685e0ba0390fa361976282be85ee0fc4abc34a5d40aee5deabbe48355938126b9f26b49cd89ec180388
7
+ data.tar.gz: c9a3b7f71aaadbb622213a4f32792f699b7ceed98136c577c6d201054f8b85abf16cb1339505288ab620e1192646e17944e37bef7efa2e292ca3ac29a6b88bb7
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-05-11
4
+
5
+ - Initial release
data/Dockerfile ADDED
@@ -0,0 +1,15 @@
1
+ FROM ruby:3.0.0
2
+
3
+ # 必要最低限のツールを入れる
4
+ RUN apt-get update -qq && apt-get install -y sqlite3 vim nodejs npm sudo
5
+
6
+ RUN gem install bundler
7
+ RUN gem update bundler
8
+
9
+ RUN mkdir bootstrap-dev-preview
10
+
11
+ # アプリケーションディレクトリを作業用ディレクトリに設定
12
+ WORKDIR /bootstrap-dev-preview
13
+ ADD . .
14
+ RUN bundle install
15
+ EXPOSE 3000
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Bootstrap::Dev::Preview
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/bootstrap/dev/preview`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/bootstrap-dev-preview.
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
Binary file
@@ -0,0 +1,9 @@
1
+ version: '3'
2
+ services:
3
+ ruby:
4
+ build: .
5
+ tty: true
6
+ ports:
7
+ - "3001:3000"
8
+ volumes:
9
+ - .:/bootstrap-dev-preview
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bootstrap
4
+ module Dev
5
+ module Preview
6
+ VERSION = "0.1.6"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "preview/version"
4
+
5
+ module Bootstrap
6
+ module Dev
7
+ module Preview
8
+ def self.hi
9
+ "Nice to meet you, I am INO."
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ module Bootstrap
2
+ module Dev
3
+ module Preview
4
+ VERSION: String
5
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
6
+ end
7
+ end
8
+ end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-dev-preview
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - INK
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-05-12 00:00:00.000000000 Z
@@ -16,14 +16,26 @@ email:
16
16
  executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
- files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".rubocop.yml"
22
+ - CHANGELOG.md
23
+ - Dockerfile
24
+ - LICENSE.txt
25
+ - README.md
26
+ - Rakefile
27
+ - bootstrap-dev-preview-0.1.1.gem
28
+ - docker-compose.yml
29
+ - lib/bootstrap/dev/preview.rb
30
+ - lib/bootstrap/dev/preview/version.rb
31
+ - sig/bootstrap/dev/preview.rbs
20
32
  homepage: https://gitlab.com/share292508/bootstrap-dev-preview
21
33
  licenses:
22
34
  - MIT
23
35
  metadata:
24
36
  homepage_uri: https://gitlab.com/share292508/bootstrap-dev-preview
25
37
  source_code_uri: https://gitlab.com/share292508/bootstrap-dev-preview
26
- post_install_message:
38
+ post_install_message:
27
39
  rdoc_options: []
28
40
  require_paths:
29
41
  - lib
@@ -31,15 +43,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
31
43
  requirements:
32
44
  - - ">="
33
45
  - !ruby/object:Gem::Version
34
- version: 3.3.1
46
+ version: 3.0.0
35
47
  required_rubygems_version: !ruby/object:Gem::Requirement
36
48
  requirements:
37
49
  - - ">="
38
50
  - !ruby/object:Gem::Version
39
51
  version: '0'
40
52
  requirements: []
41
- rubygems_version: 3.5.10
42
- signing_key:
53
+ rubygems_version: 3.2.3
54
+ signing_key:
43
55
  specification_version: 4
44
56
  summary: We provide you to view template for Bootstrap, when developing website.
45
57
  test_files: []