rmthemegen 0.0.32 → 0.0.33
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.
- data/bin/geany_fix.rb +274 -0
- data/bin/geanyfy.rb +45 -0
- data/bin/generate_themes.rb +1 -1
- data/lib/geanyfy.rb +45 -0
- data/lib/rmthemegen/rmthemegen_187.rb +19 -9
- data/lib/rmthemegen/rmthemegen_187_textmate.rb +96 -29
- data/lib/rmthemegen/token_list.rb +49 -0
- data/lib/rmthemegen/version.rb +1 -1
- data/rmthemegen.gemspec +1 -1
- data/test/rmt_beautiful_quality.tmTheme +399 -0
- data/test/rmt_beautiful_quality.xml +2089 -0
- data/test/test_generate_themes.rb +2 -1
- metadata +12 -16
- data/test/textmate_themes/rmt_attractive_Taiwan.tmTheme +0 -17
- data/test/textmate_themes/rmt_cruel_produce.tmTheme +0 -17
- data/test/textmate_themes/rmt_grubby_route.tmTheme +0 -17
- data/test/textmate_themes/rmt_hostile_wall.tmTheme +0 -17
- data/test/textmate_themes/rmt_inc_handsaw.tmTheme +0 -17
- data/test/textmate_themes/rmt_indirect_modem.tmTheme +0 -17
- data/test/textmate_themes/rmt_married_great-grandfather.tmTheme +0 -17
- data/test/textmate_themes/rmt_strong_lilac.tmTheme +0 -17
- data/test/textmate_themes/rmt_wide_stone.tmTheme +0 -17
@@ -30,11 +30,12 @@ Kernel.exit
|
|
30
30
|
|
31
31
|
l = RMThemeGen::ThemeGenerator.new
|
32
32
|
|
33
|
-
|
33
|
+
1.times do
|
34
34
|
# puts l.make_theme_file(:outputdir => ENV["PWD"],:bg_color_style => 0 )
|
35
35
|
# puts l.make_theme_file(ENV["PWD"],0,[{:r=>0.0,:g=>0.0},{:r=>1.0,:g=>0.0,:b=>0.0}])
|
36
36
|
puts l.make_theme_file(ENV["PWD"],0,nil,nil)
|
37
37
|
puts l.to_textmate
|
38
|
+
|
38
39
|
# puts l.make_theme_file(:outputdir => ENV["PWD"],:bg_color_style => 2 )
|
39
40
|
end
|
40
41
|
puts "testing to_css"
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmthemegen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 93
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 33
|
10
|
+
version: 0.0.33
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- David Heitzman
|
@@ -15,8 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-07-
|
19
|
-
default_executable:
|
18
|
+
date: 2011-07-28 00:00:00 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
21
|
name: xml-simple
|
@@ -68,6 +67,8 @@ description: ""
|
|
68
67
|
email:
|
69
68
|
- evolvemeans@gmail.com
|
70
69
|
executables:
|
70
|
+
- geany_fix.rb
|
71
|
+
- geanyfy.rb
|
71
72
|
- generate_themes.rb
|
72
73
|
extensions: []
|
73
74
|
|
@@ -78,7 +79,10 @@ files:
|
|
78
79
|
- Gemfile
|
79
80
|
- README
|
80
81
|
- Rakefile
|
82
|
+
- bin/geany_fix.rb
|
83
|
+
- bin/geanyfy.rb
|
81
84
|
- bin/generate_themes.rb
|
85
|
+
- lib/geanyfy.rb
|
82
86
|
- lib/rmthemegen.rb
|
83
87
|
- lib/rmthemegen/color/color.rb
|
84
88
|
- lib/rmthemegen/color/color/cmyk.rb
|
@@ -108,6 +112,8 @@ files:
|
|
108
112
|
- test/.~lock.mean65#
|
109
113
|
- test/get_tm_tokens.rb
|
110
114
|
- test/index.html
|
115
|
+
- test/rmt_beautiful_quality.tmTheme
|
116
|
+
- test/rmt_beautiful_quality.xml
|
111
117
|
- test/sample_ruby_source
|
112
118
|
- test/tc_themename.rb
|
113
119
|
- test/test_generate_themes.rb
|
@@ -190,17 +196,7 @@ files:
|
|
190
196
|
- test/textmate_themes/idleFingers.tmTheme
|
191
197
|
- test/textmate_themes/krTheme.tmTheme
|
192
198
|
- test/textmate_themes/monoindustrial.tmTheme
|
193
|
-
- test/textmate_themes/rmt_attractive_Taiwan.tmTheme
|
194
|
-
- test/textmate_themes/rmt_cruel_produce.tmTheme
|
195
|
-
- test/textmate_themes/rmt_grubby_route.tmTheme
|
196
|
-
- test/textmate_themes/rmt_hostile_wall.tmTheme
|
197
|
-
- test/textmate_themes/rmt_inc_handsaw.tmTheme
|
198
|
-
- test/textmate_themes/rmt_indirect_modem.tmTheme
|
199
|
-
- test/textmate_themes/rmt_married_great-grandfather.tmTheme
|
200
|
-
- test/textmate_themes/rmt_strong_lilac.tmTheme
|
201
|
-
- test/textmate_themes/rmt_wide_stone.tmTheme
|
202
199
|
- test/tm_token_to_scope_list
|
203
|
-
has_rdoc: true
|
204
200
|
homepage: http://aptifuge.com
|
205
201
|
licenses: []
|
206
202
|
|
@@ -234,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
234
230
|
requirements: []
|
235
231
|
|
236
232
|
rubyforge_project: rmthemegen
|
237
|
-
rubygems_version: 1.
|
233
|
+
rubygems_version: 1.8.5
|
238
234
|
signing_key:
|
239
235
|
specification_version: 3
|
240
236
|
summary: Generates RubyMine >= 3.0 editor color themes
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>attractive_Taiwan</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<dict>
|
3
|
-
<array>
|
4
|
-
<dict>
|
5
|
-
<dict>
|
6
|
-
<string>#000000</string>
|
7
|
-
<string>#FFFFFF</string>
|
8
|
-
<key>background</key>
|
9
|
-
<key>foreground</key>
|
10
|
-
</dict>
|
11
|
-
<key>settings</key>
|
12
|
-
</dict>
|
13
|
-
</array>
|
14
|
-
<key>name</key>
|
15
|
-
<string>cruel_produce</string>
|
16
|
-
</dict>
|
17
|
-
<plist version="1.0" />
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>grubby_route</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>hostile_wall</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>inc_handsaw</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>indirect_modem</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>married_great-grandfather</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>strong_lilac</string>
|
17
|
-
</dict>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version='1.0' standalone='yes'?>
|
2
|
-
<plist version="1.0" />
|
3
|
-
<dict>
|
4
|
-
<array>
|
5
|
-
<dict>
|
6
|
-
<key>settings</key>
|
7
|
-
<dict>
|
8
|
-
<string>#000000</string>
|
9
|
-
<string>#FFFFFF</string>
|
10
|
-
<key>background</key>
|
11
|
-
<key>foreground</key>
|
12
|
-
</dict>
|
13
|
-
</dict>
|
14
|
-
</array>
|
15
|
-
<key>name</key>
|
16
|
-
<string>wide_stone</string>
|
17
|
-
</dict>
|