extract-repo 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -2
- data/boot/finish.rb +1 -0
- data/boot/start.rb +13 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 111babbb2ba5b59cdf7dd53327df19a44c20929ed3154d66645562d7567343a1
|
4
|
+
data.tar.gz: 78c79593377481d503d52064d276a077cdd207f15773c6e0741ded1f4516a1b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85eeecc2d8df59d566402e2e63c5ec9500c864bca79459a13432b6961a2c23e379a46f6b3ba6cf1c0742f4c743613434355abefb322a841da8b4f148c08dc4bc
|
7
|
+
data.tar.gz: 64e565bd2f1ac2495ff401f684e82bbde9a33257bd27da0878cd7919e93a9ee63ff3dba76dd73b00aebac9d4680f6e8a1b82899334cd1e58a166193faf77c912
|
data/CHANGELOG.md
CHANGED
data/boot/finish.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "extract_repo"
|
data/boot/start.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
ENV["FOOBARA_ENV"] ||= "development"
|
2
|
+
|
3
|
+
if File.exist?("#{__dir__}/../Gemfile")
|
4
|
+
# Seems we are not being ran as a gem executable. Let's bundle since we might be in a test or
|
5
|
+
# we might be pointed at via path: or some other similar situation.
|
6
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
7
|
+
require "bundler/setup"
|
8
|
+
end
|
9
|
+
|
10
|
+
if ENV["FOOBARA_ENV"] == "development" || ENV["FOOBARA_ENV"] == "test"
|
11
|
+
require "pry"
|
12
|
+
require "pry-byebug"
|
13
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extract-repo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
@@ -53,6 +53,8 @@ files:
|
|
53
53
|
- README.md
|
54
54
|
- bin/extract-repo
|
55
55
|
- boot.rb
|
56
|
+
- boot/finish.rb
|
57
|
+
- boot/start.rb
|
56
58
|
- lib/extract_repo.rb
|
57
59
|
homepage: https://github.com/foobara/extract-repo
|
58
60
|
licenses:
|