dry-auto_inject 0.6.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- # Specify your gem's dependencies in dry-auto_inject.gemspec
6
- gemspec
7
-
8
- group :test do
9
- gem "simplecov"
10
- gem "codeclimate-test-reporter", require: nil
11
- end
12
-
13
- group :tools do
14
- gem 'byebug', platforms: :mri
15
- gem 'pry'
16
- end
data/Rakefile DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env rake
2
- # frozen_string_literal: true
3
-
4
- require 'bundler/gem_tasks'
5
-
6
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
7
-
8
- require 'rspec/core'
9
- require 'rspec/core/rake_task'
10
-
11
- task default: :spec
12
-
13
- desc 'Run all specs in spec directory'
14
- RSpec::Core::RakeTask.new(:spec)
data/bin/console DELETED
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require 'bundler/setup'
5
- require 'dry-auto_inject'
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- require 'pry'
11
- Pry.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
data/rakelib/rubocop.rake DELETED
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- begin
4
- require 'rubocop/rake_task'
5
-
6
- Rake::Task[:default].enhance [:rubocop]
7
-
8
- RuboCop::RakeTask.new do |task|
9
- task.options << '--display-cop-names'
10
- end
11
-
12
- namespace :rubocop do
13
- desc 'Generate a configuration file acting as a TODO list.'
14
- task :auto_gen_config do
15
- exec 'bundle exec rubocop --auto-gen-config'
16
- end
17
- end
18
-
19
- rescue LoadError
20
- end