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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5611ae50c160607fee0fd5b843acf32c67c6b9d73cb9ac8327ef92f39bda15c2
4
- data.tar.gz: 3698b500028b3bcfe84cc0071c534070571c697addb89851537a736472851778
3
+ metadata.gz: '01785028f1a5c5bebaec6af2f2a47d2a64448851e8723282fe9dcf8d9d75ad74'
4
+ data.tar.gz: ba081c6e2c834bd1bff2c4296fe39e6b141bfe13a9c41f1caf48b32517a1f394
5
5
  SHA512:
6
- metadata.gz: 8ba080363097bfbbd6b2978bad0101ccc64033cde44c8bfe43f169051339f856b8395afea067c8abc3b6ca5a3a031cabfd8e0e7adc3079ebaeff7a073ba25307
7
- data.tar.gz: fe7358982fbab5486faa0d823330b3dad3d88546c674ba1ca6c5b53a79cc0533bf1396f5cf3ed4906aa7522892eb5c2cc1429acfc7e6b25262d9b200ae14bb71
6
+ metadata.gz: 5346c3974f6b2395efa43bc61181ed327c385da43be6bf0d9accddc185b8dd24956879588a0a01bac057978a7515b249f1d56cb39d164ed16229cea169323c52
7
+ data.tar.gz: adfe5c8c2a7b6c9982347f437e3e0c4bd6da409fdcd409c75500698d5230357e8956e7ddb5e7270ab5a0d2b7f39ec3e0126d50785bad8459ac73e622a7081fa1
data/CHANGELOG.md CHANGED
@@ -7,3 +7,7 @@
7
7
  ## [0.1.1] - 2024-10-07
8
8
 
9
9
  - Modified Faraday version
10
+
11
+ ## [0.1.2] - 2024-10-07
12
+
13
+ - Updated dependencies
data/Gemfile CHANGED
@@ -6,11 +6,7 @@ source "https://rubygems.org"
6
6
  gemspec
7
7
 
8
8
  gem "rake", "~> 13.0"
9
-
10
9
  gem "rspec", "~> 3.2"
11
-
12
10
  gem "standard", "~> 1.3"
13
-
14
11
  gem "restforce", "~> 7.5.0"
15
-
16
12
  gem "faraday", "2.10.0"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- use_the_force (0.1.0)
4
+ use_the_force (0.1.1)
5
5
  faraday (~> 2.10.0)
6
6
  rake (~> 13.0)
7
7
  restforce (~> 7.5.0)
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UseTheForce
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -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
- (File.expand_path(f) == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
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.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