nextgen 0.9.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b80094f25dff39bd1bc1a02e3f97b5b9734f1b4181cc296859a27d99dc67eec0
4
- data.tar.gz: e69e83394de1775fbdb3f47281ed94c551335b19ed30799cbd4588b94e457540
3
+ metadata.gz: e767c1fa3b2359b5472dd5ac7ba7d56eb7db593005299bff5f1dd447f819357a
4
+ data.tar.gz: ad16e84e405b666d97df23f80c486fe82467217fb0920c3ff0842494aa582d1f
5
5
  SHA512:
6
- metadata.gz: f94e12485984ea85094337ef65a53885933c7261d7e3a5af072d24d34c2bdfac1bdb25be2d9d080d0abf687d1d2750aa01a7e40dfb0329520103ff7dfb465b15
7
- data.tar.gz: 8170d1bc83bfa96f3392a2b72275ead5b66c1e9fe9b2be29479ec1023c9921b4627cebb48871b62fdf8b5d12a716ca15c255c6d796802b5d8dbe84617224cf20
6
+ metadata.gz: 619a74b6fb01b1ebe55ecc8e4bd90b94c6de0ba80372ff005ba6f595b16374bc4e8b6f6fab98029edcdea9de44082e4d9fd9757f9e550fdeb45765ec5fa7443b
7
+ data.tar.gz: c46e0bb02315cc853419d665267abea5bcad14d5fc55fcff9645319ddb3ca61e734a6c71931f46c6bdcad2b2e1a96eee2a78bd54a11db957eae28333eb689f74
data/README.md CHANGED
@@ -79,7 +79,7 @@ Nextgen can install and configure your choice of these recommended gems:
79
79
  - [brakeman](https://github.com/presidentbeef/brakeman)
80
80
  - [bundler-audit](https://github.com/rubysec/bundler-audit)
81
81
  - [capybara-lockstep](https://github.com/makandra/capybara-lockstep)
82
- - [dotenv-rails](https://github.com/bkeepers/dotenv)
82
+ - [dotenv](https://github.com/bkeepers/dotenv)
83
83
  - [erb_lint](https://github.com/Shopify/erb-lint)
84
84
  - [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails)
85
85
  - [good_migrations](https://github.com/testdouble/good-migrations)
@@ -51,8 +51,8 @@ capybara_lockstep:
51
51
  requires: system_testing
52
52
 
53
53
  dotenv:
54
- prompt: "dotenv-rails"
55
- description: "Install dotenv-rails gem and add .env.sample"
54
+ prompt: "dotenv"
55
+ description: "Install dotenv gem and add .env.sample"
56
56
 
57
57
  erb_lint:
58
58
  prompt: "ERB Lint"
@@ -1,3 +1,3 @@
1
- install_gem "dotenv-rails", group: %i[development test]
1
+ install_gem "dotenv", version: ">= 3.0", group: %i[development test]
2
2
  copy_file ".env.sample"
3
3
  gitignore "/.env*", "!/.env.sample"
@@ -1,3 +1,8 @@
1
1
  install_gems "vcr", "webmock", group: :test
2
2
  copy_test_support_file "vcr.rb.tt"
3
3
  copy_test_support_file "webmock.rb"
4
+ append_to_file ".gitattributes", <<~GITATTRS if File.exist?(".gitattributes")
5
+
6
+ # Mark VCR cassettes as having been generated.
7
+ #{rspec? ? "spec" : "test"}/cassettes/* linguist-generated
8
+ GITATTRS
@@ -1,3 +1,3 @@
1
1
  module Nextgen
2
- VERSION = "0.9.0".freeze
2
+ VERSION = "0.11.0".freeze
3
3
  end
@@ -5,7 +5,6 @@ require "capybara/rspec"
5
5
 
6
6
  Capybara.configure do |config|
7
7
  config.default_max_wait_time = 2
8
- config.disable_animation = true
9
8
  config.enable_aria_label = true
10
9
  config.server = :puma, {Silent: true}
11
10
  config.test_id = "data-testid"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nextgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-14 00:00:00.000000000 Z
11
+ date: 2024-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  - !ruby/object:Gem::Version
220
220
  version: '0'
221
221
  requirements: []
222
- rubygems_version: 3.5.3
222
+ rubygems_version: 3.5.6
223
223
  signing_key:
224
224
  specification_version: 4
225
225
  summary: Generate your next Rails app interactively!