use_the_force 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5611ae50c160607fee0fd5b843acf32c67c6b9d73cb9ac8327ef92f39bda15c2
4
- data.tar.gz: 3698b500028b3bcfe84cc0071c534070571c697addb89851537a736472851778
3
+ metadata.gz: 1dd89fac77881a469f7a8e6113d75212ce8653796dc39c9e7d895e904a88f4a0
4
+ data.tar.gz: 14b7d2ac4ab739ae8a145729fb070867a8a5564abeba9419410ac3a5a3968269
5
5
  SHA512:
6
- metadata.gz: 8ba080363097bfbbd6b2978bad0101ccc64033cde44c8bfe43f169051339f856b8395afea067c8abc3b6ca5a3a031cabfd8e0e7adc3079ebaeff7a073ba25307
7
- data.tar.gz: fe7358982fbab5486faa0d823330b3dad3d88546c674ba1ca6c5b53a79cc0533bf1396f5cf3ed4906aa7522892eb5c2cc1429acfc7e6b25262d9b200ae14bb71
6
+ metadata.gz: 107e0b45af62c1d7493896cfcf36260e090d65ec2b24382ef145badefed7f7671c43184106b8d9ae372165a7d0f23c22eafe7eb7a96fb8862fbb2d46ad590d7f
7
+ data.tar.gz: 6d2fd0b4b2f0fc206e6e0b0b76cfa575e4840e37697c6c72391ae3702b5bfab4e9997a328a52a4540751552ab57ce8f2335baca1bea15c0527cb4de9461f1cbd
data/CHANGELOG.md CHANGED
@@ -7,3 +7,11 @@
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
14
+
15
+ ## [0.1.3] - 2024-10-07
16
+
17
+ - 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.2)
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
@@ -4,7 +4,7 @@ class UseTheForce::Base
4
4
  @client = client
5
5
  @filters = {}
6
6
  @target = target
7
- @soql = ""
7
+ @soql = ""
8
8
  end
9
9
 
10
10
  def to_restforce_collection
@@ -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.3"
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.3
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