rails-gui 0.0.2 → 0.0.3

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: 690558b467a492c85154ab772d2fdfe68aef060d333b4f5f9a87beca5f39e828
4
- data.tar.gz: 7b54b2625ffc28aed46c05524b3c2a40d4636983f163c64b627c2d0c6b694bd6
3
+ metadata.gz: 5129f8c791e9e26101d9f56444bf00e53f1a562137be9d7597017c856974c004
4
+ data.tar.gz: a5699d7579628285e64df957908de2ee6936d95cd6168afd309490ea015d1a58
5
5
  SHA512:
6
- metadata.gz: ae9a68b4ec8179912a0f888dd75abaab8f3cf84e2ddea71a447598863825b4948a89ea9a4e78f91d8202d667541d88e84b94ab7b51e56b65abc8424b80c4c899
7
- data.tar.gz: 196b3cf21f69874ae44a1d9427aa86a882918a40531749cc3c8b78cbcde29474d77f7e74ab3273fa24f27c56b09c18b21d50f9297c3de2af9505b504e814fed2
6
+ metadata.gz: 8484f9efddf7298328c4bcc3770831374ce2be884411fdc3fdfc0eae9e1c0a3d96d81a6cdf520c1f27f97564965a6b1e421cd2bc8a7e22ebd7999df144e69307
7
+ data.tar.gz: f353f79dab5700c76dd67e244626cfb69e43a337e2ce07178a9cfd4f63f8e57237a4ef091c7098a0d1d3f72a8ff1be87d688efda5515ea3e730863874a15d837
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.3
4
+
5
+ - Eliminate header from rails route table content
6
+
3
7
  ## 0.0.2
4
8
 
5
9
  - Load app instantly after first run by caching routes in a local file under ~/.rails-gui/routes.yml
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Rails GUI 0.0.2
1
+ # Rails GUI 0.0.3
2
2
  ## User-Friendly Rails Configuration
3
3
  [![Gem Version](https://badge.fury.io/rb/rails-gui.svg)](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.2
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.2'
29
+ gem 'rails-gui', '~> 0.0.3'
30
30
  end
31
31
  ```
32
32
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
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(1).map do |line|
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.2 ruby lib
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.2"
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-11"
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.2
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 00:00:00.000000000 Z
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