Skip to content

Commit

Permalink
Add require all gem
Browse files Browse the repository at this point in the history
  • Loading branch information
dgcliff committed Nov 8, 2023
1 parent 4a4ee89 commit 9987e96
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.11
0.0.12
47 changes: 2 additions & 45 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,21 @@ PATH
atlas_rb (0.1.0)
faraday (~> 2.7)
faraday-multipart (~> 1)
require_all (~> 3)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
base64 (0.1.1)
diff-lcs (1.5.0)
faraday (2.7.10)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (3.0.2)
json (2.6.3)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
multipart-post (2.3.0)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.1)
rexml (3.2.6)
require_all (3.0.0)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand All @@ -43,38 +32,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.56.3)
base64 (~> 0.1.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
standard (1.31.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.56.2)
standard-custom (~> 1.0.0)
standard-performance (~> 1.2)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.2.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.19.0)
unicode-display_width (2.4.2)

PLATFORMS
x86_64-linux
Expand All @@ -83,7 +41,6 @@ DEPENDENCIES
atlas_rb!
rake (~> 13.0)
rspec (~> 3.0)
standard

BUNDLED WITH
2.2.33
1 change: 1 addition & 0 deletions atlas_rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Gem::Specification.new do |spec|
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_dependency "faraday", "~> 2.7"
spec.add_dependency "faraday-multipart", "~> 1"
spec.add_dependency "require_all", "~> 3"

spec.add_development_dependency "rspec", "~> 3.12"

Expand Down
9 changes: 5 additions & 4 deletions lib/atlas_rb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

require "faraday"
require "faraday/multipart"
require_relative "atlas_rb/version"
require_relative "atlas_rb/faraday_helper"
require_relative "atlas_rb/resource"
require_relative "atlas_rb/community"
# require_relative "atlas_rb/version"
# require_relative "atlas_rb/faraday_helper"
# require_relative "atlas_rb/resource"
#require_relative "atlas_rb/community"
require_all "atlas_rb"

module AtlasRb
class Error < StandardError; end
Expand Down

0 comments on commit 9987e96

Please sign in to comment.