create-ruby-app 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +2 -2
- data/lib/create_ruby_app/app.rb +1 -1
- data/lib/create_ruby_app/version.rb +1 -1
- data/spec/lib/create_ruby_app/actions/generate_files_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8190723f385297b3f0eff12248235b549fbd79ed77ec5247d9413ce3a0dbba1a
|
4
|
+
data.tar.gz: 3fcc4a652f16b1bdf89d631f135323654e4530f1dcd5fee7b786f921db576a5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 708140451ae9f6780f4986fb06d051a18e7da119723020ef0e0a8f5355144703a686a1103c8649a40785ec00cf5b7bdb5846f28406f4a615159362b6255b60d2
|
7
|
+
data.tar.gz: 484ddfe4f53806ecc09823e0f37ce425c0306bd792d00100888a0810c249f2bc33ff17e84afb3bebf097241e531a1ce08aea3fac09e1c982dba616bd9fa8f6f3
|
data/CHANGELOG.md
CHANGED
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.
|
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.
|
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
|
data/lib/create_ruby_app/app.rb
CHANGED
@@ -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.
|
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.
|
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.
|
107
|
+
rubygems_version: 3.1.2
|
108
108
|
signing_key:
|
109
109
|
specification_version: 4
|
110
110
|
summary: Scaffold Ruby applications effortlessly
|