textmate_fcsh 0.2.0 → 0.3.0
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/README.rdoc +17 -0
- data/VERSION +1 -1
- data/lib/textmate_fcsh.rb +1 -1
- data/textmate_fcsh.gemspec +69 -0
- metadata +2 -1
data/README.rdoc
CHANGED
|
@@ -3,9 +3,22 @@
|
|
|
3
3
|
Compiles flex in textmate with FCSH. Provides clickable error reports, so errors can be
|
|
4
4
|
fast and easily fixed.
|
|
5
5
|
|
|
6
|
+
== Screencast
|
|
7
|
+
|
|
8
|
+
Watch a textmate_fcsh screencast here:
|
|
9
|
+
http://jaapvandermeer.com/2010/03/01/textmatefcsh-compile-flex-in-textmate-using-fcsh/
|
|
10
|
+
|
|
11
|
+
== Prerequisites
|
|
12
|
+
|
|
13
|
+
Make sure:
|
|
14
|
+
|
|
15
|
+
* <i>fcsh</i> is in your path
|
|
16
|
+
* <i>git</i> is installed
|
|
17
|
+
|
|
6
18
|
|
|
7
19
|
=== Installation
|
|
8
20
|
|
|
21
|
+
|
|
9
22
|
# install textmate_fcsh
|
|
10
23
|
gem install textmate_fcsh
|
|
11
24
|
|
|
@@ -21,6 +34,10 @@ fast and easily fixed.
|
|
|
21
34
|
# Creates compiler instruction file: .textmate_fcsh
|
|
22
35
|
textmate_fcsh -c
|
|
23
36
|
|
|
37
|
+
# open .textmate_fcsh and adapt compiler settings.
|
|
38
|
+
# You can add every directive that mxmlc understands. (underscores are translated to dashes)
|
|
39
|
+
|
|
40
|
+
|
|
24
41
|
=== Run
|
|
25
42
|
|
|
26
43
|
In project dir type:
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.3.0
|
data/lib/textmate_fcsh.rb
CHANGED
|
@@ -6,7 +6,7 @@ require 'yaml'
|
|
|
6
6
|
|
|
7
7
|
class TextmateFcsh
|
|
8
8
|
CONFIG_FILE = '.textmate_fcsh'
|
|
9
|
-
TEXTMATE_BUNDLE_LOCATION = "git
|
|
9
|
+
TEXTMATE_BUNDLE_LOCATION = "git://github.com/japetheape/textmate_fcsh_bundle.git"
|
|
10
10
|
|
|
11
11
|
def initialize
|
|
12
12
|
check_preconditions
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{textmate_fcsh}
|
|
8
|
+
s.version = "0.3.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jaap van der Meer"]
|
|
12
|
+
s.date = %q{2010-03-02}
|
|
13
|
+
s.default_executable = %q{textmate_fcsh}
|
|
14
|
+
s.description = %q{Compile Flex in Textmate using FCSH. Advanced error reporting.}
|
|
15
|
+
s.email = %q{jaapvandermeer@gmail.com}
|
|
16
|
+
s.executables = ["textmate_fcsh"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.rdoc"
|
|
20
|
+
]
|
|
21
|
+
s.files = [
|
|
22
|
+
".document",
|
|
23
|
+
".gitignore",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.rdoc",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"bin/textmate_fcsh",
|
|
29
|
+
"lib/fcsh/fcsh.rb",
|
|
30
|
+
"lib/file_watcher.rb",
|
|
31
|
+
"lib/formatters/html_mxmlc_error_formatter.rb",
|
|
32
|
+
"lib/mxmlc_output/mxmlc_error.rb",
|
|
33
|
+
"lib/mxmlc_output/mxmlc_output_reader.rb",
|
|
34
|
+
"lib/textmate_fcsh.rb",
|
|
35
|
+
"spec/fixtures/mxmlc_output.txt",
|
|
36
|
+
"spec/html_mxmlc_error_formatter_spec.rb",
|
|
37
|
+
"spec/mxmlc_output_reader_spec.rb",
|
|
38
|
+
"spec/spec.opts",
|
|
39
|
+
"spec/spec_helper.rb",
|
|
40
|
+
"spec/textmate_fcsh_spec.rb",
|
|
41
|
+
"templates/standard.html.erb",
|
|
42
|
+
"textmate_fcsh.gemspec"
|
|
43
|
+
]
|
|
44
|
+
s.homepage = %q{http://github.com/japetheape/textmate_fcsh}
|
|
45
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
46
|
+
s.require_paths = ["lib"]
|
|
47
|
+
s.rubygems_version = %q{1.3.5}
|
|
48
|
+
s.summary = %q{Compile Flex in Textmate using FCSH. Advanced error reporting.}
|
|
49
|
+
s.test_files = [
|
|
50
|
+
"spec/html_mxmlc_error_formatter_spec.rb",
|
|
51
|
+
"spec/mxmlc_output_reader_spec.rb",
|
|
52
|
+
"spec/spec_helper.rb",
|
|
53
|
+
"spec/textmate_fcsh_spec.rb"
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
if s.respond_to? :specification_version then
|
|
57
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
58
|
+
s.specification_version = 3
|
|
59
|
+
|
|
60
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
61
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
62
|
+
else
|
|
63
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
64
|
+
end
|
|
65
|
+
else
|
|
66
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: textmate_fcsh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jaap van der Meer
|
|
@@ -52,6 +52,7 @@ files:
|
|
|
52
52
|
- spec/spec_helper.rb
|
|
53
53
|
- spec/textmate_fcsh_spec.rb
|
|
54
54
|
- templates/standard.html.erb
|
|
55
|
+
- textmate_fcsh.gemspec
|
|
55
56
|
has_rdoc: true
|
|
56
57
|
homepage: http://github.com/japetheape/textmate_fcsh
|
|
57
58
|
licenses: []
|