use_the_force 0.1.1 → 0.1.2
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/CHANGELOG.md +4 -0
- data/Gemfile +0 -4
- data/Gemfile.lock +1 -1
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/use_the_force/version.rb +1 -1
- data/use_the_force.gemspec +2 -1
- 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: '01785028f1a5c5bebaec6af2f2a47d2a64448851e8723282fe9dcf8d9d75ad74'
|
|
4
|
+
data.tar.gz: ba081c6e2c834bd1bff2c4296fe39e6b141bfe13a9c41f1caf48b32517a1f394
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5346c3974f6b2395efa43bc61181ed327c385da43be6bf0d9accddc185b8dd24956879588a0a01bac057978a7515b249f1d56cb39d164ed16229cea169323c52
|
|
7
|
+
data.tar.gz: adfe5c8c2a7b6c9982347f437e3e0c4bd6da409fdcd409c75500698d5230357e8956e7ddb5e7270ab5a0d2b7f39ec3e0126d50785bad8459ac73e622a7081fa1
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/bin/console
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "bundler/setup"
|
|
5
|
+
require "use_the_force"
|
|
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
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
11
|
+
# require "pry"
|
|
12
|
+
# Pry.start
|
|
13
|
+
|
|
14
|
+
require "irb"
|
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/use_the_force.gemspec
CHANGED
|
@@ -21,9 +21,10 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
22
22
|
spec.files = Dir.chdir(__dir__) do
|
|
23
23
|
`git ls-files -z`.split("\x0").reject do |f|
|
|
24
|
-
|
|
24
|
+
f.match(%r{\A(?:test|spec|features)/}) || f.match(%r{\.git}) || f.end_with?('.gem')
|
|
25
25
|
end
|
|
26
26
|
end
|
|
27
|
+
|
|
27
28
|
spec.bindir = "exe"
|
|
28
29
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
29
30
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: use_the_force
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- IvanSchlagheck
|
|
@@ -112,6 +112,8 @@ files:
|
|
|
112
112
|
- LICENSE.txt
|
|
113
113
|
- README.md
|
|
114
114
|
- Rakefile
|
|
115
|
+
- bin/console
|
|
116
|
+
- bin/setup
|
|
115
117
|
- lib/use_the_force.rb
|
|
116
118
|
- lib/use_the_force/base.rb
|
|
117
119
|
- lib/use_the_force/configuration.rb
|