rails-frontend-cli 1.0.4 → 1.0.5
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 +8 -1
- data/README.md +2 -2
- data/USER_MANUAL.md +2 -2
- data/lib/rails_frontend_cli/version.rb +1 -1
- data/lib/rails_frontend_cli.rb +7 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3da8f1ac0ec844492088c0b7dbdef86a2f3ea6a26bd8edfb6d83ea719e606e21
|
|
4
|
+
data.tar.gz: 1736f4bb3caedd030c6c1f99e604814208e55b21be2459f38f0f88f11f3ffab3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b35ea2a462ee7d861e1c9e5340ac34181e0b45ae441569258613b2d23bc83292dfa7f00ac82ca3d509a58c3e0dcfbe6b23c18c1edf6b444384b4c615c9f6d8f
|
|
7
|
+
data.tar.gz: f8b90d96b1baf5d8a40b8a65e94adcd420ff24807054528a1b7278793f7816c53f9535ab4cf1571cf291eaec0018bab6771d47917f83432ef2b2e58dc8736a31
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## v1.0.5
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
- **Build Command:**
|
|
7
|
+
- Added wget availability check before running `rails-frontend build` command
|
|
8
|
+
- Clear error message with installation instructions if wget is not installed
|
|
9
|
+
|
|
10
|
+
---
|
|
4
11
|
|
|
5
12
|
## v1.0.4
|
|
6
13
|
|
data/README.md
CHANGED
|
@@ -8,9 +8,9 @@ A CLI tool that makes frontend development with Rails incredibly easy, allowing
|
|
|
8
8
|
|
|
9
9
|
For detailed usage guide, see [USER_MANUAL.md](USER_MANUAL.md)
|
|
10
10
|
|
|
11
|
-
## Rails Frontend Coding
|
|
11
|
+
## Rails Frontend Coding Course (Free)
|
|
12
12
|
|
|
13
|
-
📚 [
|
|
13
|
+
📚 [Course material](https://gamma.app/docs/Frontend-Coding-Training-with-Rails-thatg6lvcpx4g7l) (English) | 📚 [Kurs materyali](https://gamma.app/docs/Rails-ile-Frontend-Kodlama-Egitimi-i6q19pjb2jpw9ny) (Türkçe)
|
|
14
14
|
|
|
15
15
|
## Features
|
|
16
16
|
|
data/USER_MANUAL.md
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
A CLI tool that makes frontend development with Rails incredibly easy, allowing you to enjoy Rails frontend coding without needing to know Ruby or Rails.
|
|
6
6
|
|
|
7
|
-
## Rails Frontend Coding
|
|
7
|
+
## Rails Frontend Coding Course (Free)
|
|
8
8
|
|
|
9
|
-
📚 [
|
|
9
|
+
📚 [Course material](https://gamma.app/docs/Frontend-Coding-Training-with-Rails-thatg6lvcpx4g7l) (English)
|
|
10
10
|
|
|
11
11
|
### Installation
|
|
12
12
|
|
data/lib/rails_frontend_cli.rb
CHANGED
|
@@ -5,7 +5,7 @@ require 'fileutils'
|
|
|
5
5
|
require 'optparse'
|
|
6
6
|
|
|
7
7
|
class RailsFrontendCLI
|
|
8
|
-
VERSION = "1.0.
|
|
8
|
+
VERSION = "1.0.5"
|
|
9
9
|
AUTHOR = "Levent Özbilgiç"
|
|
10
10
|
LINKEDIN = "https://www.linkedin.com/in/leventozbilgic/"
|
|
11
11
|
GITHUB = "https://github.com/ozbilgic"
|
|
@@ -605,6 +605,12 @@ class RailsFrontendCLI
|
|
|
605
605
|
end
|
|
606
606
|
|
|
607
607
|
def wget_mirror(port)
|
|
608
|
+
# Check if wget is installed
|
|
609
|
+
unless system("which wget > /dev/null 2>&1")
|
|
610
|
+
puts "" # New line
|
|
611
|
+
error_message("wget is not installed! The build feature requires wget.\n\nPlease install wget:\n - Ubuntu/Debian: sudo apt-get install wget\n - macOS: brew install wget\n - Fedora: sudo dnf install wget")
|
|
612
|
+
end
|
|
613
|
+
|
|
608
614
|
# Delete previous build folder
|
|
609
615
|
FileUtils.rm_rf('build')
|
|
610
616
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-frontend-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Levent Özbilgiç
|
|
@@ -23,10 +23,11 @@ dependencies:
|
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '13.0'
|
|
26
|
-
description: Rails Frontend CLI is a command-line tool that enables fast and easy
|
|
27
|
-
development of Rails projects for frontend developers
|
|
28
|
-
|
|
29
|
-
Ruby or Rails.
|
|
26
|
+
description: "Rails Frontend CLI is a command-line tool that enables fast and easy
|
|
27
|
+
development of \n Rails projects for frontend developers and
|
|
28
|
+
frontend coding with Rails enjoyable, \n even without prior
|
|
29
|
+
knowledge of Ruby or Rails. I've created a free course on this \n topic.
|
|
30
|
+
You can find the course on the GitHub homepage for this CLI."
|
|
30
31
|
email:
|
|
31
32
|
- ozbilgiclevent@gmail.com
|
|
32
33
|
executables:
|