Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@ gemspec

# Use dotenv for environment variables
gem 'dotenv'
# Use Faraday for HTTP requests [https://lostisland.github.io/faraday/]
gem 'faraday'

gem 'rspec', '~> 3.0'
gem 'rubocop', group: 'development', require: false
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
PATH
remote: .
specs:
openpanel-sdk (0.2.2)
openpanel-sdk (0.2.3)
faraday

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -68,7 +69,6 @@ PLATFORMS

DEPENDENCIES
dotenv
faraday
openpanel-sdk!
rspec (~> 3.0)
rubocop
Expand Down
2 changes: 1 addition & 1 deletion lib/openpanel/sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module OpenPanel
module SDK
VERSION = '0.2.2'
VERSION = '0.2.3'
end
end
9 changes: 5 additions & 4 deletions openpanel-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ Gem::Specification.new do |spec|
f.start_with?(*%w[bin/ Gemfile .gitignore .rspec spec/ .github/])
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
# spec.bindir = 'exe'
# spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
# Use Faraday for HTTP requests [https://lostisland.github.io/faraday/]
spec.add_dependency 'faraday'
spec.add_development_dependency 'rspec', '~> 3.0'

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down
Loading