Skip to content

Commit

Permalink
Remove simplecov and codecov.
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Oct 6, 2023
1 parent 3df95bd commit 4012586
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 24 deletions.
11 changes: 0 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,10 @@ GEM
base64 (0.1.1)
bigdecimal (3.1.4)
builder (3.2.4)
codecov (0.6.0)
simplecov (>= 0.15, < 0.22)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crass (1.0.6)
date (3.3.3)
docile (1.4.0)
drb (2.1.1)
ruby2_keywords
erubi (1.12.0)
Expand Down Expand Up @@ -176,12 +173,6 @@ GEM
reline (0.3.9)
io-console (~> 0.5)
ruby2_keywords (0.0.5)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3)
stringio (3.0.8)
thor (1.2.2)
timeout (0.4.0)
Expand All @@ -198,11 +189,9 @@ PLATFORMS

DEPENDENCIES
action-store!
codecov
factory_bot
pg
rails (~> 7.1.0)
simplecov

BUNDLED WITH
2.2.3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## ActionStore

[![Gem Version](https://badge.fury.io/rb/action-store.svg)](https://badge.fury.io/rb/action-store) [![build](https://github.com/rails-engine/action-store/workflows/build/badge.svg)](https://github.com/rails-engine/action-store/actions?query=workflow%3Abuild) [![codecov.io](https://codecov.io/github/rails-engine/action-store/coverage.svg?branch=master)](https://codecov.io/github/rails-engine/action-store?branch=master)
[![Gem Version](https://badge.fury.io/rb/action-store.svg)](https://badge.fury.io/rb/action-store) [![build](https://github.com/rails-engine/action-store/workflows/build/badge.svg)](https://github.com/rails-engine/action-store/actions?query=workflow%3Abuild)

Store different kinds of actions (Like, Follow, Star, Block, etc.) in a single table via ActiveRecord Polymorphic Associations.

Expand Down
2 changes: 0 additions & 2 deletions action-store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ Gem::Specification.new do |s|

s.add_dependency "rails", ">= 5.2"

s.add_development_dependency "codecov"
s.add_development_dependency "factory_bot"
s.add_development_dependency "pg"
s.add_development_dependency "simplecov"
end
10 changes: 0 additions & 10 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@
require "factory_bot"
FactoryBot.definition_file_paths = [File.expand_path("factories", __dir__)]

require "simplecov"
if ENV["CI"] == "true"
require "codecov"
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end
SimpleCov.start "rails" do
add_filter "lib/action_store/version"
add_filter "lib/generators"
end

require File.expand_path("../test/dummy/config/environment.rb", __dir__)

ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
Expand Down

0 comments on commit 4012586

Please sign in to comment.