eisegesis 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +63 -0
- data/Rakefile +1 -0
- data/eisegesis.gemspec +19 -0
- data/lib/eisegesis.rb +5 -0
- data/lib/eisegesis/version.rb +3 -0
- metadata +53 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Joe Fredette
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# Eisegesis
|
2
|
+
|
3
|
+
Eisegesis is a tool for specifying a project structure, and how to compile it,
|
4
|
+
and just friggin' build it.
|
5
|
+
|
6
|
+
Eisegesis is a response to complexity. Eisegesis prefers convention to
|
7
|
+
configuration. It prefers simplicity in the face of often mind-searing levels of
|
8
|
+
complication and confusion. Autotools is overwrought, CMake is a phenomenal
|
9
|
+
improvement, but suffers the same fate. Every extant build system seeks to be
|
10
|
+
all things to all people. They deny the basic fact. People are wrong, and should
|
11
|
+
be told what to do most of the time.
|
12
|
+
|
13
|
+
Eisegesis aims to do that. Strong opinions and a consistent interface for adding
|
14
|
+
project automation tasks. It lets you weild the full power of Ruby to automate
|
15
|
+
tasks in your codebase. It automates parallel compiles. It automatically does
|
16
|
+
incremental compiles. It manages multiple compilers, multi-pass compilation, and
|
17
|
+
many other features.
|
18
|
+
|
19
|
+
Among it's present and planned features:
|
20
|
+
|
21
|
+
* Parallel Builds
|
22
|
+
* Distributed/Multi-machine Builds
|
23
|
+
* Incremental Compilation
|
24
|
+
* Multi-pass Compilation
|
25
|
+
* Full Force of Ruby and Rake to automate project tasks
|
26
|
+
|
27
|
+
## Naming
|
28
|
+
|
29
|
+
Eisegesis is the counterforce to Exegesis. Whereas Exegesis expounds upon a
|
30
|
+
topic, Eisegesis starts with the idea and seeks to support it. It's actually a
|
31
|
+
negative connotation. It's essentially starting with your conclusion and working
|
32
|
+
backwards to support it. I prefer to take the connotation that it takes all the
|
33
|
+
elements expounded by [Exegesis](http://www.github.com/jfredett/exegesis) (which
|
34
|
+
it uses to access the filesystem), and draws them back in to produce a final
|
35
|
+
product.
|
36
|
+
|
37
|
+
Also, I think it's a cool word.
|
38
|
+
|
39
|
+
## Installation
|
40
|
+
|
41
|
+
Add this line to your application's Gemfile:
|
42
|
+
|
43
|
+
gem 'eisegesis'
|
44
|
+
|
45
|
+
And then execute:
|
46
|
+
|
47
|
+
$ bundle
|
48
|
+
|
49
|
+
Or install it yourself as:
|
50
|
+
|
51
|
+
$ gem install eisegesis
|
52
|
+
|
53
|
+
## Usage
|
54
|
+
|
55
|
+
TODO: Write usage instructions here
|
56
|
+
|
57
|
+
## Contributing
|
58
|
+
|
59
|
+
1. Fork it
|
60
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
61
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
62
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
63
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/eisegesis.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'eisegesis/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "eisegesis"
|
8
|
+
gem.version = Eisegesis::VERSION
|
9
|
+
gem.authors = ["Joe Fredette"]
|
10
|
+
gem.email = ["jfredett@gmail.com"]
|
11
|
+
gem.description = %q{A tool for building projects. It doesn't suck.}
|
12
|
+
gem.summary = %q{A tool for building projects. It doesn't suck.}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
end
|
data/lib/eisegesis.rb
ADDED
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eisegesis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Joe Fredette
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-03-24 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: A tool for building projects. It doesn't suck.
|
15
|
+
email:
|
16
|
+
- jfredett@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE.txt
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- eisegesis.gemspec
|
27
|
+
- lib/eisegesis.rb
|
28
|
+
- lib/eisegesis/version.rb
|
29
|
+
homepage: ''
|
30
|
+
licenses: []
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
34
|
+
- lib
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
requirements: []
|
48
|
+
rubyforge_project:
|
49
|
+
rubygems_version: 1.8.24
|
50
|
+
signing_key:
|
51
|
+
specification_version: 3
|
52
|
+
summary: A tool for building projects. It doesn't suck.
|
53
|
+
test_files: []
|