redcar-sparkup 1.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.
Files changed (3) hide show
  1. data/README.md +23 -0
  2. data/plugin.rb +9 -0
  3. metadata +48 -0
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ #_RedCar Sparkup_
2
+
3
+ ###Info
4
+ Adds [Sparkup](https://github.com/rstacruz/sparkup/tree/) capabilities to the Redcar text editor
5
+
6
+ ###Install
7
+ cd ~/.redcar/plugins
8
+ git clone git@github.com:pockata/redcar-sparkup.git sparkup
9
+ cd sparkup
10
+ git submodule init
11
+ git submodule update
12
+
13
+ ###Note
14
+ For now, Sparkup requires Python to run. It's preinstalled on OS X and most Linux distros.
15
+ On Windows, you can install it from [here](http://www.python.org/download/windows/)
16
+
17
+ ###Changing indentation
18
+ Sparkup defaults to 4 spaces for soft tabs. If you wish to change this, use the shortcut Ctrl+Shift+I, or go through the sparkup plugin menu, and select "Set Indent Level". Change the number as you wish. Credit also given to: twitter.com/kashtanov for helping me with this at a local hack night. -agmcleod.
19
+
20
+
21
+ ###Todo
22
+ - Rewrite Sparkup to remove Python as a requirement
23
+ - Add [Zen Coding](http://code.google.com/p/zen-coding/) as an optional parser
data/plugin.rb ADDED
@@ -0,0 +1,9 @@
1
+
2
+ Plugin.define do
3
+ name "Sparkup"
4
+ version "0.1"
5
+ file "lib", "sparkup.rb"
6
+ object "Redcar::Sparkup"
7
+ dependencies "application",">0",
8
+ "edit_view" ,">0"
9
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redcar-sparkup
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.0'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Aaron McLeod
9
+ - Pockata
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2011-09-13 00:00:00.000000000Z
14
+ dependencies: []
15
+ description: ''
16
+ email:
17
+ - aaron.g.mcleod@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - README.md
23
+ - plugin.rb
24
+ homepage: http://github.com/agmcleod/redcar-sparkup
25
+ licenses: []
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 1.8.7
45
+ signing_key:
46
+ specification_version: 3
47
+ summary: A plugin for redcar that uses the python sparkup utility.
48
+ test_files: []