study_line 0.2.5 → 0.2.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 +4 -4
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/bin/stl +5 -0
- data/lib/study_line/version.rb +1 -1
- data/study_line-0.2.5.gem +0 -0
- data/study_line.gemspec +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5796d7673f5535501e940cf3fbcc009d1904abafbee45e7bbb4cb8e8c3f0135
|
4
|
+
data.tar.gz: af1e589a7f7f973b250704d1efe501df775637f2aeaa43c248682e51c467bc7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40da33cf0185c82ce6aeef0746e9d6138f37006c8812f5eefc7646a5b32c4483d950e7cc8f6de41ea490745eb86c0647d0272c186b6728ed79d27de9da8e8042
|
7
|
+
data.tar.gz: a24ba063eabdbd3a657e1795713e5c502f3d55470bde1b236f5d7c9cfb8713643397e711f90673555d27d0f60bcf7423169f4dcf1c08fd65bcf32640689b146d
|
data/bin/console
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "study_line"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
require "irb"
|
11
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/stl
ADDED
data/lib/study_line/version.rb
CHANGED
Binary file
|
data/study_line.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.files = Dir.chdir(__dir__) do
|
27
27
|
`git ls-files -z`.split("\x0").reject do |f|
|
28
28
|
(File.expand_path(f) == __FILE__) ||
|
29
|
-
f.start_with?(*%w[
|
29
|
+
f.start_with?(*%w[test spec features .git .circleci appveyor Gemfile])
|
30
30
|
end
|
31
31
|
end
|
32
32
|
spec.bindir = "bin"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: study_line
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kentaro0215
|
@@ -27,7 +27,10 @@ dependencies:
|
|
27
27
|
description:
|
28
28
|
email:
|
29
29
|
- ken.runteq0215@gmail.com
|
30
|
-
executables:
|
30
|
+
executables:
|
31
|
+
- console
|
32
|
+
- setup
|
33
|
+
- stl
|
31
34
|
extensions: []
|
32
35
|
extra_rdoc_files: []
|
33
36
|
files:
|
@@ -37,6 +40,9 @@ files:
|
|
37
40
|
- CHANGELOG.md
|
38
41
|
- README.md
|
39
42
|
- Rakefile
|
43
|
+
- bin/console
|
44
|
+
- bin/setup
|
45
|
+
- bin/stl
|
40
46
|
- lib/study_line.rb
|
41
47
|
- lib/study_line/version.rb
|
42
48
|
- sig/study_line.rbs
|
@@ -44,6 +50,7 @@ files:
|
|
44
50
|
- study_line-0.2.2.gem
|
45
51
|
- study_line-0.2.3.gem
|
46
52
|
- study_line-0.2.4.gem
|
53
|
+
- study_line-0.2.5.gem
|
47
54
|
- study_line.gemspec
|
48
55
|
- vendor/bundle/ruby/3.2.0/bin/dotenv
|
49
56
|
- vendor/bundle/ruby/3.2.0/bin/htmldiff
|