Remove unneeded files from gem

This commit is contained in:
Vasily Fedoseyev
2023-10-23 19:57:09 +03:00
parent 2eae20a0c9
commit 3e43e17790
7 changed files with 16 additions and 12 deletions

View File

@@ -5,7 +5,6 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
gemspec gemspec
gem 'fastimage'
gem 'pg' gem 'pg'
gem 'aws-sdk-s3' gem 'aws-sdk-s3'
@@ -22,8 +21,6 @@ gem 'thoughtbot-shoulda', '>= 2.9.0'
gem 'pry' gem 'pry'
gem 'pry-byebug' gem 'pry-byebug'
gem 'addressable'
unless defined?(Appraisal) unless defined?(Appraisal)
gem 'appraisal' gem 'appraisal'

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3.6'
services:
postgres:
image: postgres:12-alpine
environment:
POSTGRES_DB: paperclip_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432

View File

@@ -2,7 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "fastimage"
gem "pg" gem "pg"
gem "aws-sdk-s3" gem "aws-sdk-s3"
gem "fog-local" gem "fog-local"
@@ -14,6 +13,5 @@ gem "mocha"
gem "thoughtbot-shoulda", ">= 2.9.0" gem "thoughtbot-shoulda", ">= 2.9.0"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "addressable"
gemspec path: "../" gemspec path: "../"

View File

@@ -2,7 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "fastimage"
gem "pg" gem "pg"
gem "aws-sdk-s3" gem "aws-sdk-s3"
gem "fog-local" gem "fog-local"
@@ -14,6 +13,5 @@ gem "mocha"
gem "thoughtbot-shoulda", ">= 2.9.0" gem "thoughtbot-shoulda", ">= 2.9.0"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "addressable"
gemspec path: "../" gemspec path: "../"

View File

@@ -2,7 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "fastimage"
gem "pg" gem "pg"
gem "aws-sdk-s3" gem "aws-sdk-s3"
gem "fog-local" gem "fog-local"
@@ -14,6 +13,5 @@ gem "mocha"
gem "thoughtbot-shoulda", ">= 2.9.0" gem "thoughtbot-shoulda", ">= 2.9.0"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "addressable"
gemspec path: "../" gemspec path: "../"

View File

@@ -2,7 +2,6 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "fastimage"
gem "pg" gem "pg"
gem "aws-sdk-s3" gem "aws-sdk-s3"
gem "fog-local" gem "fog-local"
@@ -14,6 +13,5 @@ gem "mocha"
gem "thoughtbot-shoulda", ">= 2.9.0" gem "thoughtbot-shoulda", ">= 2.9.0"
gem "pry" gem "pry"
gem "pry-byebug" gem "pry-byebug"
gem "addressable"
gemspec path: "../" gemspec path: "../"

View File

@@ -8,7 +8,10 @@ Gem::Specification.new do |s|
s.date = %q{2009-06-18} s.date = %q{2009-06-18}
s.email = %q{jyurek@thoughtbot.com} s.email = %q{jyurek@thoughtbot.com}
s.extra_rdoc_files = ["README.rdoc"] s.extra_rdoc_files = ["README.rdoc"]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|gemfiles)/}) } s.files = `git ls-files -z`.split("\x0").reject do |f|
f.start_with?('.') || f.match?(%r{^(test|gemfiles)/}) ||
f.match?(%r{docker-compose.yml|Appraisals|Gemfile|Rakefile})
end
s.homepage = %q{http://www.thoughtbot.com/projects/paperclip} s.homepage = %q{http://www.thoughtbot.com/projects/paperclip}
s.rdoc_options = ["--line-numbers", "--inline-source"] s.rdoc_options = ["--line-numbers", "--inline-source"]
s.require_paths = ["lib"] s.require_paths = ["lib"]