phlex-lucide 0.427.0 → 0.428.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/phlex/lucide/icons/folder_search_icon.rb +2 -2
- data/lib/phlex/lucide/icons/message_square_dashed_icon.rb +9 -8
- data/lib/phlex/lucide/icons/tickets_plane_icon.rb +30 -0
- data/lib/phlex/lucide/version.rb +1 -1
- data/lib/phlex/lucide.rb +1 -0
- metadata +5 -8
- data/.idea/.gitignore +0 -8
- data/.idea/modules.xml +0 -8
- data/.idea/phlex-lucide.iml +0 -133
- data/CHANGELOG.md +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a2c64262a0476d4409efce8e7d8b99e43407e1c9e46f4b7a760157f1c10db1b
|
4
|
+
data.tar.gz: 5f0b8553cd339ede56debe42ed9c82acff03f2d362a1c483d45ea8dd3a59ed4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3181d78e6044063cf4f076377c1f9e00941fa16e249a4456258f424f0d7119ed269f79a79ef2fdde28a017eede548c07f76e6ea43a5adc68d7fbe284fb10c1ac
|
7
|
+
data.tar.gz: 647afc9f252b347271f5167f2e4143dc311bdd4f25b9854ac4cf4ed56b6698b3a15c59fbc9f40625f71de62c087c569adeb14013eefbc203c4fab062a350380c
|
@@ -16,12 +16,12 @@ module Phlex
|
|
16
16
|
stroke_linejoin: "round",
|
17
17
|
**props
|
18
18
|
) do |s|
|
19
|
-
s.circle(cx: "17", cy: "17", r: "3")
|
20
19
|
s.path(
|
21
20
|
d:
|
22
21
|
"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1"
|
23
22
|
)
|
24
|
-
s.path(d: "m21 21-1.
|
23
|
+
s.path(d: "m21 21-1.9-1.9")
|
24
|
+
s.circle(cx: "17", cy: "17", r: "3")
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
@@ -16,14 +16,15 @@ module Phlex
|
|
16
16
|
stroke_linejoin: "round",
|
17
17
|
**props
|
18
18
|
) do |s|
|
19
|
-
s.path(d: "
|
20
|
-
s.path(d: "
|
21
|
-
s.path(d: "
|
22
|
-
s.path(d: "
|
23
|
-
s.path(d: "M21
|
24
|
-
s.path(d: "
|
25
|
-
s.path(d: "
|
26
|
-
s.path(d: "
|
19
|
+
s.path(d: "M10 17H7l-4 4v-7")
|
20
|
+
s.path(d: "M14 17h1")
|
21
|
+
s.path(d: "M14 3h1")
|
22
|
+
s.path(d: "M19 3a2 2 0 0 1 2 2")
|
23
|
+
s.path(d: "M21 14v1a2 2 0 0 1-2 2")
|
24
|
+
s.path(d: "M21 9v1")
|
25
|
+
s.path(d: "M3 9v1")
|
26
|
+
s.path(d: "M5 3a2 2 0 0 0-2 2")
|
27
|
+
s.path(d: "M9 3h1")
|
27
28
|
end
|
28
29
|
end
|
29
30
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex
|
4
|
+
module Lucide
|
5
|
+
class TicketsPlaneIcon < Phlex::Lucide::Icon
|
6
|
+
def view_template
|
7
|
+
svg(
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
9
|
+
width: size,
|
10
|
+
height: size,
|
11
|
+
viewbox: "0 0 24 24",
|
12
|
+
fill: "none",
|
13
|
+
stroke: "currentColor",
|
14
|
+
stroke_width: "2",
|
15
|
+
stroke_linecap: "round",
|
16
|
+
stroke_linejoin: "round",
|
17
|
+
**props
|
18
|
+
) do |s|
|
19
|
+
s.path(d: "M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12")
|
20
|
+
s.path(d: "m12 13.5 3.75.5")
|
21
|
+
s.path(d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8")
|
22
|
+
s.path(d: "M6 10V8")
|
23
|
+
s.path(d: "M6 14v1")
|
24
|
+
s.path(d: "M6 19v2")
|
25
|
+
s.rect(x: "2", y: "8", width: "20", height: "13", rx: "2")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/phlex/lucide/version.rb
CHANGED
data/lib/phlex/lucide.rb
CHANGED
@@ -1405,6 +1405,7 @@ module Phlex
|
|
1405
1405
|
autoload :TicketSlashIcon, "phlex/lucide/icons/ticket_slash_icon"
|
1406
1406
|
autoload :TicketXIcon, "phlex/lucide/icons/ticket_x_icon"
|
1407
1407
|
autoload :TicketIcon, "phlex/lucide/icons/ticket_icon"
|
1408
|
+
autoload :TicketsPlaneIcon, "phlex/lucide/icons/tickets_plane_icon"
|
1408
1409
|
autoload :TicketsIcon, "phlex/lucide/icons/tickets_icon"
|
1409
1410
|
autoload :TimerOffIcon, "phlex/lucide/icons/timer_off_icon"
|
1410
1411
|
autoload :TimerResetIcon, "phlex/lucide/icons/timer_reset_icon"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phlex-lucide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.428.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kodkod
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: phlex
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.10'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.10'
|
27
27
|
description: Lucide Icons for Phlex
|
28
28
|
email:
|
29
29
|
- andrew@kodkod.me
|
@@ -31,11 +31,7 @@ executables: []
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
-
- ".idea/.gitignore"
|
35
|
-
- ".idea/modules.xml"
|
36
|
-
- ".idea/phlex-lucide.iml"
|
37
34
|
- ".rubocop.yml"
|
38
|
-
- CHANGELOG.md
|
39
35
|
- CODE_OF_CONDUCT.md
|
40
36
|
- LICENSE.txt
|
41
37
|
- README.md
|
@@ -1438,6 +1434,7 @@ files:
|
|
1438
1434
|
- lib/phlex/lucide/icons/ticket_slash_icon.rb
|
1439
1435
|
- lib/phlex/lucide/icons/ticket_x_icon.rb
|
1440
1436
|
- lib/phlex/lucide/icons/tickets_icon.rb
|
1437
|
+
- lib/phlex/lucide/icons/tickets_plane_icon.rb
|
1441
1438
|
- lib/phlex/lucide/icons/timer_icon.rb
|
1442
1439
|
- lib/phlex/lucide/icons/timer_off_icon.rb
|
1443
1440
|
- lib/phlex/lucide/icons/timer_reset_icon.rb
|
data/.idea/.gitignore
DELETED
data/.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/phlex-lucide.iml" filepath="$PROJECT_DIR$/.idea/phlex-lucide.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
data/.idea/phlex-lucide.iml
DELETED
@@ -1,133 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$">
|
8
|
-
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
-
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
-
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
12
|
-
</content>
|
13
|
-
<orderEntry type="jdk" jdkName="rbenv: 3.3.4" jdkType="RUBY_SDK" />
|
14
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="actionpack (v7.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="actionview (v7.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v7.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, rbenv: 3.3.4) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="bigdecimal (v3.1.8, rbenv: 3.3.4) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="builder (v3.3.0, rbenv: 3.3.4) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.11, rbenv: 3.3.4) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.3.4, rbenv: 3.3.4) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="connection_pool (v2.4.1, rbenv: 3.3.4) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="crass (v1.0.6, rbenv: 3.3.4) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="css_press (v0.3.2, rbenv: 3.3.4) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="csspool-st (v3.1.2, rbenv: 3.3.4) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="deface (v1.9.0, rbenv: 3.3.4) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="drb (v2.2.1, rbenv: 3.3.4) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="erubi (v1.13.0, rbenv: 3.3.4) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="execjs (v2.9.1, rbenv: 3.3.4) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="highline (v3.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
32
|
-
<orderEntry type="library" scope="PROVIDED" name="html_press (v0.8.2, rbenv: 3.3.4) [gem]" level="application" />
|
33
|
-
<orderEntry type="library" scope="PROVIDED" name="htmlentities (v4.3.4, rbenv: 3.3.4) [gem]" level="application" />
|
34
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.14.5, rbenv: 3.3.4) [gem]" level="application" />
|
35
|
-
<orderEntry type="library" scope="PROVIDED" name="io-console (v0.7.2, rbenv: 3.3.4) [gem]" level="application" />
|
36
|
-
<orderEntry type="library" scope="PROVIDED" name="irb (v1.14.0, rbenv: 3.3.4) [gem]" level="application" />
|
37
|
-
<orderEntry type="library" scope="PROVIDED" name="json (v2.7.2, rbenv: 3.3.4) [gem]" level="application" />
|
38
|
-
<orderEntry type="library" scope="PROVIDED" name="language_server-protocol (v3.17.0.3, rbenv: 3.3.4) [gem]" level="application" />
|
39
|
-
<orderEntry type="library" scope="PROVIDED" name="logger (v1.6.0, rbenv: 3.3.4) [gem]" level="application" />
|
40
|
-
<orderEntry type="library" scope="PROVIDED" name="loofah (v2.22.0, rbenv: 3.3.4) [gem]" level="application" />
|
41
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.24.1, rbenv: 3.3.4) [gem]" level="application" />
|
42
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_css (v0.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
43
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_js (v0.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
44
|
-
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.16.7, rbenv: 3.3.4) [gem]" level="application" />
|
45
|
-
<orderEntry type="library" scope="PROVIDED" name="options (v2.3.2, rbenv: 3.3.4) [gem]" level="application" />
|
46
|
-
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.26.2, rbenv: 3.3.4) [gem]" level="application" />
|
47
|
-
<orderEntry type="library" scope="PROVIDED" name="parser (v3.3.4.2, rbenv: 3.3.4) [gem]" level="application" />
|
48
|
-
<orderEntry type="library" scope="PROVIDED" name="phlex (v1.11.0, rbenv: 3.3.4) [gem]" level="application" />
|
49
|
-
<orderEntry type="library" scope="PROVIDED" name="phlex-rails (v1.1.1, rbenv: 3.3.4) [gem]" level="application" />
|
50
|
-
<orderEntry type="library" scope="PROVIDED" name="phlexing (v0.6.0, rbenv: 3.3.4) [gem]" level="application" />
|
51
|
-
<orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.5, rbenv: 3.3.4) [gem]" level="application" />
|
52
|
-
<orderEntry type="library" scope="PROVIDED" name="prettier_print (v1.2.1, rbenv: 3.3.4) [gem]" level="application" />
|
53
|
-
<orderEntry type="library" scope="PROVIDED" name="progress_bar (v1.3.4, rbenv: 3.3.4) [gem]" level="application" />
|
54
|
-
<orderEntry type="library" scope="PROVIDED" name="psych (v5.1.2, rbenv: 3.3.4) [gem]" level="application" />
|
55
|
-
<orderEntry type="library" scope="PROVIDED" name="racc (v1.8.1, rbenv: 3.3.4) [gem]" level="application" />
|
56
|
-
<orderEntry type="library" scope="PROVIDED" name="rack (v3.1.7, rbenv: 3.3.4) [gem]" level="application" />
|
57
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-session (v2.0.0, rbenv: 3.3.4) [gem]" level="application" />
|
58
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-test (v2.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
59
|
-
<orderEntry type="library" scope="PROVIDED" name="rackup (v2.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
60
|
-
<orderEntry type="library" scope="PROVIDED" name="rails-dom-testing (v2.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
61
|
-
<orderEntry type="library" scope="PROVIDED" name="rails-html-sanitizer (v1.6.0, rbenv: 3.3.4) [gem]" level="application" />
|
62
|
-
<orderEntry type="library" scope="PROVIDED" name="railties (v7.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
63
|
-
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, rbenv: 3.3.4) [gem]" level="application" />
|
64
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v13.2.1, rbenv: 3.3.4) [gem]" level="application" />
|
65
|
-
<orderEntry type="library" scope="PROVIDED" name="rdoc (v6.7.0, rbenv: 3.3.4) [gem]" level="application" />
|
66
|
-
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.9.2, rbenv: 3.3.4) [gem]" level="application" />
|
67
|
-
<orderEntry type="library" scope="PROVIDED" name="reline (v0.5.9, rbenv: 3.3.4) [gem]" level="application" />
|
68
|
-
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.3.5, rbenv: 3.3.4) [gem]" level="application" />
|
69
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop (v1.65.1, rbenv: 3.3.4) [gem]" level="application" />
|
70
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.32.0, rbenv: 3.3.4) [gem]" level="application" />
|
71
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop-minitest (v0.35.1, rbenv: 3.3.4) [gem]" level="application" />
|
72
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop-rake (v0.6.0, rbenv: 3.3.4) [gem]" level="application" />
|
73
|
-
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.13.0, rbenv: 3.3.4) [gem]" level="application" />
|
74
|
-
<orderEntry type="library" scope="PROVIDED" name="strscan (v3.1.0, rbenv: 3.3.4) [gem]" level="application" />
|
75
|
-
<orderEntry type="library" scope="PROVIDED" name="syntax_tree (v6.2.0, rbenv: 3.3.4) [gem]" level="application" />
|
76
|
-
<orderEntry type="library" scope="PROVIDED" name="thor (v1.3.1, rbenv: 3.3.4) [gem]" level="application" />
|
77
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.6, rbenv: 3.3.4) [gem]" level="application" />
|
78
|
-
<orderEntry type="library" scope="PROVIDED" name="uglifier (v2.7.2, rbenv: 3.3.4) [gem]" level="application" />
|
79
|
-
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.5.0, rbenv: 3.3.4) [gem]" level="application" />
|
80
|
-
<orderEntry type="library" scope="PROVIDED" name="useragent (v0.16.10, rbenv: 3.3.4) [gem]" level="application" />
|
81
|
-
<orderEntry type="library" scope="PROVIDED" name="webrick (v1.8.1, rbenv: 3.3.4) [gem]" level="application" />
|
82
|
-
<orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.6.17, rbenv: 3.3.4) [gem]" level="application" />
|
83
|
-
</component>
|
84
|
-
<component name="RakeTasksCache-v2">
|
85
|
-
<option name="myRootTask">
|
86
|
-
<RakeTaskImpl id="rake">
|
87
|
-
<subtasks>
|
88
|
-
<RakeTaskImpl description="Build phlex-lucide-0.1.0.gem into the pkg directory" fullCommand="build" id="build" />
|
89
|
-
<RakeTaskImpl id="build">
|
90
|
-
<subtasks>
|
91
|
-
<RakeTaskImpl description="Generate SHA512 checksum of phlex-lucide-0.1.0.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
|
92
|
-
</subtasks>
|
93
|
-
</RakeTaskImpl>
|
94
|
-
<RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
|
95
|
-
<RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
|
96
|
-
<RakeTaskImpl description="Build and install phlex-lucide-0.1.0.gem into system gems" fullCommand="install" id="install" />
|
97
|
-
<RakeTaskImpl id="install">
|
98
|
-
<subtasks>
|
99
|
-
<RakeTaskImpl description="Build and install phlex-lucide-0.1.0.gem into system gems without network access" fullCommand="install:local" id="local" />
|
100
|
-
</subtasks>
|
101
|
-
</RakeTaskImpl>
|
102
|
-
<RakeTaskImpl description="Create tag v0.1.0 and build and push phlex-lucide-0.1.0.gem to https://rubygems.org" fullCommand="release[remote]" id="release[remote]" />
|
103
|
-
<RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
|
104
|
-
<RakeTaskImpl id="rubocop">
|
105
|
-
<subtasks>
|
106
|
-
<RakeTaskImpl description="Autocorrect RuboCop offenses (only when it's safe)" fullCommand="rubocop:autocorrect" id="autocorrect" />
|
107
|
-
<RakeTaskImpl description="Autocorrect RuboCop offenses (safe and unsafe)" fullCommand="rubocop:autocorrect_all" id="autocorrect_all" />
|
108
|
-
<RakeTaskImpl description="" fullCommand="rubocop:auto_correct" id="auto_correct" />
|
109
|
-
</subtasks>
|
110
|
-
</RakeTaskImpl>
|
111
|
-
<RakeTaskImpl description="Run the test suite" fullCommand="test" id="test" />
|
112
|
-
<RakeTaskImpl id="test">
|
113
|
-
<subtasks>
|
114
|
-
<RakeTaskImpl description="Print out the test command" fullCommand="test:cmd" id="cmd" />
|
115
|
-
<RakeTaskImpl description="Show which test files fail when run in isolation" fullCommand="test:isolated" id="isolated" />
|
116
|
-
<RakeTaskImpl description="Show bottom 25 tests wrt time" fullCommand="test:slow" id="slow" />
|
117
|
-
<RakeTaskImpl description="" fullCommand="test:deps" id="deps" />
|
118
|
-
</subtasks>
|
119
|
-
</RakeTaskImpl>
|
120
|
-
<RakeTaskImpl description="" fullCommand="default" id="default" />
|
121
|
-
<RakeTaskImpl description="" fullCommand="release" id="release" />
|
122
|
-
<RakeTaskImpl id="release">
|
123
|
-
<subtasks>
|
124
|
-
<RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
|
125
|
-
<RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
|
126
|
-
<RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
|
127
|
-
</subtasks>
|
128
|
-
</RakeTaskImpl>
|
129
|
-
</subtasks>
|
130
|
-
</RakeTaskImpl>
|
131
|
-
</option>
|
132
|
-
</component>
|
133
|
-
</module>
|
data/CHANGELOG.md
DELETED