File tree Expand file tree Collapse file tree 6 files changed +33
-37
lines changed Expand file tree Collapse file tree 6 files changed +33
-37
lines changed Original file line number Diff line number Diff line change @@ -4,22 +4,23 @@ source 'https://rubygems.org'
4
4
5
5
gemspec
6
6
7
+ # Dev libs
7
8
gem 'appraisal' , git : 'https://github.com/thoughtbot/appraisal.git'
8
-
9
9
gem 'database_cleaner'
10
- gem 'guard-rspec'
11
10
gem 'haml'
12
- gem 'pry'
13
11
gem 'rack-test'
14
12
gem 'rake'
15
13
gem 'rspec-rails'
16
- gem 'rubocop'
17
- gem 'rubocop-performance'
18
- gem 'rubocop-rake'
19
- gem 'rubocop-rspec'
20
- gem 'rubocop-rspec_rails'
21
14
gem 'simplecov'
22
15
gem 'sinatra'
23
16
gem 'sprockets-rails'
24
17
gem 'sqlite3' , '~> 2.1.0'
25
18
gem 'timecop'
19
+
20
+ # Dev tools / linter
21
+ gem 'guard-rspec' , require : false
22
+ gem 'rubocop' , require : false
23
+ gem 'rubocop-performance' , require : false
24
+ gem 'rubocop-rake' , require : false
25
+ gem 'rubocop-rspec' , require : false
26
+ gem 'rubocop-rspec_rails' , require : false
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ task default: :spec
8
8
9
9
desc 'Open a Ruby irb console with the gem loaded'
10
10
task :console do
11
- require 'pry'
12
11
require 'crono'
13
12
puts 'Loaded Crono'
14
13
ARGV . clear
Original file line number Diff line number Diff line change @@ -4,22 +4,21 @@ source "https://rubygems.org"
4
4
5
5
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6
6
gem "database_cleaner"
7
- gem "guard-rspec"
8
7
gem "haml"
9
- gem "pry"
10
8
gem "rack-test"
11
9
gem "rake"
12
10
gem "rspec-rails"
13
- gem "rubocop"
14
- gem "rubocop-performance"
15
- gem "rubocop-rake"
16
- gem "rubocop-rspec"
17
- gem "rubocop-rspec_rails"
18
11
gem "simplecov"
19
12
gem "sinatra"
20
13
gem "sprockets-rails"
21
14
gem "sqlite3", "~> 1.5.0"
22
15
gem "timecop"
16
+ gem "guard-rspec", require: false
17
+ gem "rubocop", require: false
18
+ gem "rubocop-performance", require: false
19
+ gem "rubocop-rake", require: false
20
+ gem "rubocop-rspec", require: false
21
+ gem "rubocop-rspec_rails", require: false
23
22
gem "rails", "~> 7.0.0"
24
23
25
24
install_if -> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0") } do
Original file line number Diff line number Diff line change @@ -4,22 +4,21 @@ source "https://rubygems.org"
4
4
5
5
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6
6
gem "database_cleaner"
7
- gem "guard-rspec"
8
7
gem "haml"
9
- gem "pry"
10
8
gem "rack-test"
11
9
gem "rake"
12
10
gem "rspec-rails"
13
- gem "rubocop"
14
- gem "rubocop-performance"
15
- gem "rubocop-rake"
16
- gem "rubocop-rspec"
17
- gem "rubocop-rspec_rails"
18
11
gem "simplecov"
19
12
gem "sinatra"
20
13
gem "sprockets-rails"
21
14
gem "sqlite3", "~> 1.5.0"
22
15
gem "timecop"
16
+ gem "guard-rspec", require: false
17
+ gem "rubocop", require: false
18
+ gem "rubocop-performance", require: false
19
+ gem "rubocop-rake", require: false
20
+ gem "rubocop-rspec", require: false
21
+ gem "rubocop-rspec_rails", require: false
23
22
gem "rails", "~> 7.1.0"
24
23
25
24
install_if -> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0") } do
Original file line number Diff line number Diff line change @@ -4,22 +4,21 @@ source "https://rubygems.org"
4
4
5
5
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6
6
gem "database_cleaner"
7
- gem "guard-rspec"
8
7
gem "haml"
9
- gem "pry"
10
8
gem "rack-test"
11
9
gem "rake"
12
10
gem "rspec-rails"
13
- gem "rubocop"
14
- gem "rubocop-performance"
15
- gem "rubocop-rake"
16
- gem "rubocop-rspec"
17
- gem "rubocop-rspec_rails"
18
11
gem "simplecov"
19
12
gem "sinatra"
20
13
gem "sprockets-rails"
21
14
gem "sqlite3", "~> 1.5.0"
22
15
gem "timecop"
16
+ gem "guard-rspec", require: false
17
+ gem "rubocop", require: false
18
+ gem "rubocop-performance", require: false
19
+ gem "rubocop-rake", require: false
20
+ gem "rubocop-rspec", require: false
21
+ gem "rubocop-rspec_rails", require: false
23
22
gem "rails", "~> 7.2.0"
24
23
25
24
gemspec path: "../"
Original file line number Diff line number Diff line change @@ -4,22 +4,21 @@ source "https://rubygems.org"
4
4
5
5
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6
6
gem "database_cleaner"
7
- gem "guard-rspec"
8
7
gem "haml"
9
- gem "pry"
10
8
gem "rack-test"
11
9
gem "rake"
12
10
gem "rspec-rails"
13
- gem "rubocop"
14
- gem "rubocop-performance"
15
- gem "rubocop-rake"
16
- gem "rubocop-rspec"
17
- gem "rubocop-rspec_rails"
18
11
gem "simplecov"
19
12
gem "sinatra"
20
13
gem "sprockets-rails"
21
14
gem "sqlite3", "~> 2.1.0"
22
15
gem "timecop"
16
+ gem "guard-rspec", require: false
17
+ gem "rubocop", require: false
18
+ gem "rubocop-performance", require: false
19
+ gem "rubocop-rake", require: false
20
+ gem "rubocop-rspec", require: false
21
+ gem "rubocop-rspec_rails", require: false
23
22
gem "rails", "~> 8.0.0"
24
23
25
24
gemspec path: "../"
You can’t perform that action at this time.
0 commit comments