rails-gui 0.0.2 → 0.0.3
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 +4 -0
- data/README.md +3 -3
- data/VERSION +1 -1
- data/app/rails_gui/model/rails_command.rb +1 -1
- data/rails-gui.gemspec +3 -3
- 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: 5129f8c791e9e26101d9f56444bf00e53f1a562137be9d7597017c856974c004
|
|
4
|
+
data.tar.gz: a5699d7579628285e64df957908de2ee6936d95cd6168afd309490ea015d1a58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8484f9efddf7298328c4bcc3770831374ce2be884411fdc3fdfc0eae9e1c0a3d96d81a6cdf520c1f27f97564965a6b1e421cd2bc8a7e22ebd7999df144e69307
|
|
7
|
+
data.tar.gz: f353f79dab5700c76dd67e244626cfb69e43a337e2ce07178a9cfd4f63f8e57237a4ef091c7098a0d1d3f72a8ff1be87d688efda5515ea3e730863874a15d837
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Rails GUI 0.0.
|
|
1
|
+
# Rails GUI 0.0.3
|
|
2
2
|
## User-Friendly Rails Configuration
|
|
3
3
|
[](http://badge.fury.io/rb/rails-gui)
|
|
4
4
|
|
|
@@ -17,7 +17,7 @@ Given that the project is still early alpha, this is your chance to contribute i
|
|
|
17
17
|
Install (if using [RVM](https://rvm.io/), in the same [gemset](https://rvm.io/gemsets/basics) as your Rails app):
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
gem install rails-gui -v0.0.
|
|
20
|
+
gem install rails-gui -v0.0.3
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### Bundler
|
|
@@ -26,7 +26,7 @@ Add to `Gemfile` under `development` group:
|
|
|
26
26
|
|
|
27
27
|
```ruby
|
|
28
28
|
group :development do
|
|
29
|
-
gem 'rails-gui', '~> 0.0.
|
|
29
|
+
gem 'rails-gui', '~> 0.0.3'
|
|
30
30
|
end
|
|
31
31
|
```
|
|
32
32
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
|
@@ -34,7 +34,7 @@ module RailsGui
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def fetch_routes
|
|
37
|
-
`rails routes`.lines.drop(
|
|
37
|
+
`rails routes`.lines.drop(2).map do |line|
|
|
38
38
|
cells = line.split
|
|
39
39
|
cells.prepend('') if cells[0] && (cells[0] == cells[0].upcase)
|
|
40
40
|
cells.insert(1, '') if cells[1] && (cells[1] != cells[1].upcase)
|
data/rails-gui.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: rails-gui 0.0.
|
|
5
|
+
# stub: rails-gui 0.0.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "rails-gui".freeze
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Andy Maleh".freeze]
|
|
14
|
-
s.date = "2023-03-
|
|
14
|
+
s.date = "2023-03-16"
|
|
15
15
|
s.description = "Rails Graphical User Interface - User-Friendly Rails Configuration (e.g. display routes in a table, run rails commands visually, etc...)".freeze
|
|
16
16
|
s.email = "andy.am@gmail.com".freeze
|
|
17
17
|
s.executables = ["rails-gui".freeze]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-gui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Maleh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: glimmer-dsl-libui
|