create-ruby-app 1.1.0 → 1.2.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: ff8d6584b0b8947926a85ec594f77b14b2a2cd20c1257fa84a9eb340c8031082
4
- data.tar.gz: 1d70581a447648a128dd208840c8faa709a1e7b7bfe51780cb3f4e0457716569
3
+ metadata.gz: 8190723f385297b3f0eff12248235b549fbd79ed77ec5247d9413ce3a0dbba1a
4
+ data.tar.gz: 3fcc4a652f16b1bdf89d631f135323654e4530f1dcd5fee7b786f921db576a5d
5
5
  SHA512:
6
- metadata.gz: af116d9f492b893d3bc020800330c4e84d76f13f69e0112286aa0170511ced20bc81e177732a3813f158acb5448115c1d0bd4ddcf752f2cdc0f13a753cb0d428
7
- data.tar.gz: 459e38e43ad058ba50b916b57d7f8262507821a85db7b4b26e05135522ccfe08d9a9849868552021d9f8ed18f7f13f726a3bd62fc9f382464d00cbd99146eade
6
+ metadata.gz: 708140451ae9f6780f4986fb06d051a18e7da119723020ef0e0a8f5355144703a686a1103c8649a40785ec00cf5b7bdb5846f28406f4a615159362b6255b60d2
7
+ data.tar.gz: 484ddfe4f53806ecc09823e0f37ce425c0306bd792d00100888a0810c249f2bc33ff17e84afb3bebf097241e531a1ce08aea3fac09e1c982dba616bd9fa8f6f3
@@ -1,3 +1,6 @@
1
+ # 1.2.0
2
+ - Bump Ruby version to 2.7.1.
3
+
1
4
  # 1.1.0
2
5
  - Disable monkey patching for RSpec.
3
6
  - Bump Ruby version to 2.6.2.
data/README.md CHANGED
@@ -14,7 +14,7 @@ instead, and if you are building a gem, please take a look at the `bundle gem`
14
14
  command.
15
15
 
16
16
  ## Requirements
17
- * Ruby (version 2.6.2 or newer).
17
+ * Ruby (version 2.7.1 or newer).
18
18
 
19
19
  ## Installation
20
20
  ```
@@ -28,7 +28,7 @@ create-ruby-app new NAME [--ruby RUBY] [--gems GEMS]
28
28
 
29
29
  ### Example
30
30
  ```
31
- create-ruby-app new my-app --gems sinatra,sequel --ruby ruby-2.6.1
31
+ create-ruby-app new my-app --gems sinatra,sequel --ruby ruby-2.7.1
32
32
  ```
33
33
 
34
34
  This will generate the following project structure with
@@ -30,7 +30,7 @@ module CreateRubyApp
30
30
 
31
31
  attr_reader :name, :gems, :version, :logger
32
32
 
33
- RUBY_VERSION = "ruby-2.6.2"
33
+ RUBY_VERSION = "ruby-2.7.1"
34
34
 
35
35
  private
36
36
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CreateRubyApp
4
- VERSION = "1.1.0"
4
+ VERSION = "1.2.0"
5
5
  end
@@ -55,7 +55,7 @@ RSpec.describe CreateRubyApp::Actions::GenerateFiles do
55
55
  end
56
56
  let(:action) { described_class.new(app) }
57
57
 
58
- it { expect(action.ruby_version_file).to eq("ruby-2.6.2") }
58
+ it { expect(action.ruby_version_file).to eq("ruby-2.7.1") }
59
59
  end
60
60
 
61
61
  context "when a version is specified" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: create-ruby-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathias Jean Johansen
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  - !ruby/object:Gem::Version
105
105
  version: '0'
106
106
  requirements: []
107
- rubygems_version: 3.0.3
107
+ rubygems_version: 3.1.2
108
108
  signing_key:
109
109
  specification_version: 4
110
110
  summary: Scaffold Ruby applications effortlessly