Skip to content

Commit

Permalink
Merge pull request #42 from gocardless/fixes-all-around
Browse files Browse the repository at this point in the history
Fixes following the opensource release of bucket-store
  • Loading branch information
ivgiuliani authored Oct 29, 2021
2 parents 36f3c3e + cf45afb commit 4ca901f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in the given provider. A valid key example would be
This library is distributed as a Ruby gem, and we recommend adding it to your Gemfile:

```ruby
gem "bucket-store"
gem "bucket_store"
```

Some attributes can be configured via `BucketStore.configure`. If using Rails, you want to
Expand Down Expand Up @@ -162,6 +162,6 @@ BucketStore.for("inmemory://bucket/path/file.xml").delete!
## License & Contributing

* BucketStore is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
* Bug reports and pull requests are welcome on GitHub at https://github.com/gocardless/file-storage.
* Bug reports and pull requests are welcome on GitHub at https://github.com/gocardless/bucket-store.

GoCardless ♥ open source. If you do too, come [join us](https://gocardless.com/about/careers/).
8 changes: 4 additions & 4 deletions bucket_store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ Gem::Specification.new do |s|
s.email = ["[email protected]"]
s.summary = "A helper library to access cloud storage services"
s.description = <<-DESCRIPTION
A helper library to access cloud storage services such as Google Cloud Storage.
A helper library to access cloud storage services such as Google Cloud Storage or S3.
DESCRIPTION
s.homepage = "https://github.com/gocardless/file-storage"
s.homepage = "https://github.com/gocardless/bucket-store"
s.license = "MIT"

s.files = Dir["lib/**/*", "README.md"]

s.required_ruby_version = ">= 2.6"

s.add_dependency "aws-sdk-s3", "~> 1"
s.add_dependency "google-cloud-storage", "~> 1.31"
s.add_dependency "aws-sdk-s3", ">= 1.104"
s.add_dependency "google-cloud-storage", ">= 1.34"

s.add_development_dependency "gc_ruboconfig", "~> 2.29"
s.add_development_dependency "pry-byebug", "~> 3.9"
Expand Down

0 comments on commit 4ca901f

Please sign in to comment.