j_rb 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 +27 -0
- data/Rakefile +1 -0
- data/jrb.gemspec +38 -0
- data/lib/jrb.rb +5 -0
- data/lib/jrb/version.rb +3 -0
- metadata +58 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 John Barton (joho)
|
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,27 @@
|
|
1
|
+
# J RB
|
2
|
+
|
3
|
+
One day this will be a world leading ruby framework.
|
4
|
+
|
5
|
+
I couldn't decided if I hated haml or erb more, so one day I will write JRB and it will be great.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'jrb'
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install jrb
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Don't
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
Don't
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/jrb.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'jrb/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "j_rb"
|
8
|
+
gem.version = Jrb::VERSION
|
9
|
+
gem.authors = ["John Barton"]
|
10
|
+
gem.email = ["jrbarton@gmail.com"]
|
11
|
+
gem.description = %q{One day this will be a world leading ruby framework.}
|
12
|
+
gem.summary = %q{I couldn't decided if I hated haml or erb more, so one day I will write JRB and it will be great.}
|
13
|
+
gem.homepage = "http://github.com/joho/jrb"
|
14
|
+
|
15
|
+
gem.post_install_message = <<-ART
|
16
|
+
___
|
17
|
+
." ".
|
18
|
+
| ___(
|
19
|
+
).' -( / UNDER CONSTRUCTION /
|
20
|
+
) _/
|
21
|
+
.'_`(
|
22
|
+
/ ( ,/;
|
23
|
+
/ \ ) \\.
|
24
|
+
/'-./ \ '.\\)
|
25
|
+
\ \ '---;\
|
26
|
+
|`\ \ \\
|
27
|
+
/ / \ \ \\
|
28
|
+
_/ / / / _\\/
|
29
|
+
( \/ /_/ \ |
|
30
|
+
jrb \_) (___) '._/
|
31
|
+
|
32
|
+
ART
|
33
|
+
|
34
|
+
gem.files = `git ls-files`.split($/)
|
35
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
36
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
37
|
+
gem.require_paths = ["lib"]
|
38
|
+
end
|
data/lib/jrb.rb
ADDED
data/lib/jrb/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: j_rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- John Barton
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-21 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: One day this will be a world leading ruby framework.
|
15
|
+
email:
|
16
|
+
- jrbarton@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
|
+
- jrb.gemspec
|
27
|
+
- lib/jrb.rb
|
28
|
+
- lib/jrb/version.rb
|
29
|
+
homepage: http://github.com/joho/jrb
|
30
|
+
licenses: []
|
31
|
+
post_install_message: ! " ___\n .\" \".\n |
|
32
|
+
\ ___( \n ).' -( / UNDER CONSTRUCTION /\n ) _/
|
33
|
+
\ \n .'_`( \n / ( ,/;\n / ) \\.\n /'-./
|
34
|
+
\ '.\\)\n '---; |` \\\n / / \\\n
|
35
|
+
\ _/ / / / _\\/\n ( / /_/ |\n jrb _) (___) '._/\n\n"
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
requirements: []
|
52
|
+
rubyforge_project:
|
53
|
+
rubygems_version: 1.8.11
|
54
|
+
signing_key:
|
55
|
+
specification_version: 3
|
56
|
+
summary: I couldn't decided if I hated haml or erb more, so one day I will write JRB
|
57
|
+
and it will be great.
|
58
|
+
test_files: []
|