study_line 0.2.4 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- 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.4.gem +0 -0
- data/study_line-0.2.5.gem +0 -0
- data/study_line.gemspec +2 -2
- metadata +10 -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
|
Binary file
|
data/study_line.gemspec
CHANGED
@@ -26,11 +26,11 @@ 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"
|
33
|
-
spec.executables = spec.files.grep(%r{
|
33
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
34
34
|
spec.require_paths = ["lib"]
|
35
35
|
|
36
36
|
# Uncomment to register a new dependency of your gem
|
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,12 +40,17 @@ 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
|
43
49
|
- study_line-0.2.1.gem
|
44
50
|
- study_line-0.2.2.gem
|
45
51
|
- study_line-0.2.3.gem
|
52
|
+
- study_line-0.2.4.gem
|
53
|
+
- study_line-0.2.5.gem
|
46
54
|
- study_line.gemspec
|
47
55
|
- vendor/bundle/ruby/3.2.0/bin/dotenv
|
48
56
|
- vendor/bundle/ruby/3.2.0/bin/htmldiff
|