rake-ui 0.1.1 → 0.1.2
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/app/models/rake_ui/rake_task_log.rb +2 -2
- data/lib/rake-ui/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5703262643de959dc202deea4531e36ad1331d8ceb4826d1588abcba905cc69
|
|
4
|
+
data.tar.gz: 10c73a8a50a107d3f75bebb480236c2292d5719311d0b84c2c7357fda670d8f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03ebc9ce3b7a31f7f7d66dc4c6b2532a4fd908db8bfe3a59dbd2ca4a46cbd87021690849789ad03360bcde08245227fa206c2f5be670ddf4548d997e6d9adb96
|
|
7
|
+
data.tar.gz: 1f41c1455006a10c9efc273ad39a09ab45fdba27cd16de4ab413607cfc386c470970f280226bbe1f1d6e6e45909d76df35b4802070b9732fbb2447eac1f36082
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
module RakeUi
|
|
4
4
|
class RakeTaskLog < OpenStruct
|
|
5
|
-
# year-month-day-hour(24hour time)-minute-second-utc
|
|
6
|
-
ID_DATE_FORMAT = "%Y-%m-%d-%H-%M-%S%z"
|
|
5
|
+
# year-month-day-hour(24hour time)-minute-second-nanosecond-utc
|
|
6
|
+
ID_DATE_FORMAT = "%Y-%m-%d-%H-%M-%S.%N%z"
|
|
7
7
|
REPOSITORY_DIR = Rails.root.join("tmp", "rake_ui")
|
|
8
8
|
FILE_DELIMITER = "____"
|
|
9
9
|
FINISHED_STRING = "+++++ COMMAND FINISHED +++++"
|
data/lib/rake-ui/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake-ui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Austin Story
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: '0'
|
|
133
133
|
requirements: []
|
|
134
|
-
rubygems_version: 3.
|
|
134
|
+
rubygems_version: 3.5.22
|
|
135
135
|
signing_key:
|
|
136
136
|
specification_version: 4
|
|
137
137
|
summary: A Mountable Rails Engine to manage Rake Tasks through a UI
|