green_eggs 0.0.1
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/.gitignore +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +37 -0
- data/Rakefile +1 -0
- data/green_eggs.gemspec +22 -0
- data/lib/green_eggs.rb +5 -0
- data/lib/green_eggs/version.rb +3 -0
- metadata +72 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2011 sdomino
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
== GreenEggs
|
|
2
|
+
|
|
3
|
+
It's going to do something with haml... I don't know what yet, but it's going to be awesome.
|
|
4
|
+
|
|
5
|
+
=== Features
|
|
6
|
+
|
|
7
|
+
=== Install
|
|
8
|
+
|
|
9
|
+
==== Rails
|
|
10
|
+
|
|
11
|
+
Add this line to your Gemfile:
|
|
12
|
+
|
|
13
|
+
gem 'green_eggs'
|
|
14
|
+
|
|
15
|
+
Then bundle install:
|
|
16
|
+
|
|
17
|
+
bundle install
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
==== Non Rails
|
|
22
|
+
|
|
23
|
+
gem install green_eggs
|
|
24
|
+
|
|
25
|
+
=== Usage
|
|
26
|
+
|
|
27
|
+
=== F.A.Q
|
|
28
|
+
|
|
29
|
+
=== TODO
|
|
30
|
+
|
|
31
|
+
=== CONTACT
|
|
32
|
+
|
|
33
|
+
Please contact me with any question, bugs, suggestions, etc.
|
|
34
|
+
|
|
35
|
+
=== Copyright
|
|
36
|
+
|
|
37
|
+
Copyright (c) 2011 Steve Domino. See LICENSE.txt for further details
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/green_eggs.gemspec
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "green_eggs/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "green_eggs"
|
|
7
|
+
s.version = GreenEggs::VERSION
|
|
8
|
+
s.authors = ["sdomino"]
|
|
9
|
+
s.email = ["sdomino@pagodabox.com"]
|
|
10
|
+
s.homepage = "http://github.com/sdomino/green_eggs"
|
|
11
|
+
s.summary = "It's going to do something with haml... don't know what yet, but it's going to be awesome."
|
|
12
|
+
s.description = "Open to suggestions about what this gem should be... because I don't know yet"
|
|
13
|
+
|
|
14
|
+
s.rubyforge_project = "green_eggs"
|
|
15
|
+
|
|
16
|
+
s.add_development_dependency 'rspec'
|
|
17
|
+
|
|
18
|
+
s.files = `git ls-files`.split("\n")
|
|
19
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
|
+
s.require_paths = ["lib"]
|
|
22
|
+
end
|
data/lib/green_eggs.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: green_eggs
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.1
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- sdomino
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-09-01 00:00:00 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rspec
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
type: :development
|
|
25
|
+
version_requirements: *id001
|
|
26
|
+
description: Open to suggestions about what this gem should be... because I don't know yet
|
|
27
|
+
email:
|
|
28
|
+
- sdomino@pagodabox.com
|
|
29
|
+
executables: []
|
|
30
|
+
|
|
31
|
+
extensions: []
|
|
32
|
+
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
|
|
35
|
+
files:
|
|
36
|
+
- .gitignore
|
|
37
|
+
- Gemfile
|
|
38
|
+
- LICENSE.txt
|
|
39
|
+
- README.rdoc
|
|
40
|
+
- Rakefile
|
|
41
|
+
- green_eggs.gemspec
|
|
42
|
+
- lib/green_eggs.rb
|
|
43
|
+
- lib/green_eggs/version.rb
|
|
44
|
+
homepage: http://github.com/sdomino/green_eggs
|
|
45
|
+
licenses: []
|
|
46
|
+
|
|
47
|
+
post_install_message:
|
|
48
|
+
rdoc_options: []
|
|
49
|
+
|
|
50
|
+
require_paths:
|
|
51
|
+
- lib
|
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
|
+
none: false
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: "0"
|
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: "0"
|
|
64
|
+
requirements: []
|
|
65
|
+
|
|
66
|
+
rubyforge_project: green_eggs
|
|
67
|
+
rubygems_version: 1.8.6
|
|
68
|
+
signing_key:
|
|
69
|
+
specification_version: 3
|
|
70
|
+
summary: It's going to do something with haml... don't know what yet, but it's going to be awesome.
|
|
71
|
+
test_files: []
|
|
72
|
+
|