meatloaf 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Manifest +4 -0
  2. data/README.rdoc +8 -0
  3. data/Rakefile +15 -0
  4. data/lib/meatloaf.rb +10 -0
  5. data/meatloaf.gemspec +29 -0
  6. metadata +57 -0
data/Manifest ADDED
@@ -0,0 +1,4 @@
1
+ README.rdoc
2
+ Rakefile
3
+ lib/meatloaf.rb
4
+ Manifest
data/README.rdoc ADDED
@@ -0,0 +1,8 @@
1
+ = Meatloaf
2
+
3
+ Woo
4
+
5
+ == Meatload
6
+
7
+ Yeah
8
+
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('meatloaf', '0.1.0') do |p|
6
+ p.description = "Compiles similar bg images into one, using SASS directives."
7
+ p.url = "https://github.com/machty/meatloaf"
8
+ p.author = "Alex Matchneer"
9
+ p.email = "machty@gmail.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
13
+
14
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
15
+
data/lib/meatloaf.rb ADDED
@@ -0,0 +1,10 @@
1
+ module Meatloaf
2
+ def to_meatloaf
3
+ "IT MEATS"
4
+ end
5
+ end
6
+
7
+ class ActiveRecord::Base
8
+ include Meatloaf
9
+ end
10
+
data/meatloaf.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "meatloaf"
5
+ s.version = "0.1.0"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Alex Matchneer"]
9
+ s.date = "2011-11-02"
10
+ s.description = "Compiles similar bg images into one, using SASS directives."
11
+ s.email = "machty@gmail.com"
12
+ s.extra_rdoc_files = ["README.rdoc", "lib/meatloaf.rb"]
13
+ s.files = ["README.rdoc", "Rakefile", "lib/meatloaf.rb", "Manifest", "meatloaf.gemspec"]
14
+ s.homepage = "https://github.com/machty/meatloaf"
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Meatloaf", "--main", "README.rdoc"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = "meatloaf"
18
+ s.rubygems_version = "1.8.10"
19
+ s.summary = "Compiles similar bg images into one, using SASS directives."
20
+
21
+ if s.respond_to? :specification_version then
22
+ s.specification_version = 3
23
+
24
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
25
+ else
26
+ end
27
+ else
28
+ end
29
+ end
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: meatloaf
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Alex Matchneer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-02 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Compiles similar bg images into one, using SASS directives.
15
+ email: machty@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files:
19
+ - README.rdoc
20
+ - lib/meatloaf.rb
21
+ files:
22
+ - README.rdoc
23
+ - Rakefile
24
+ - lib/meatloaf.rb
25
+ - Manifest
26
+ - meatloaf.gemspec
27
+ homepage: https://github.com/machty/meatloaf
28
+ licenses: []
29
+ post_install_message:
30
+ rdoc_options:
31
+ - --line-numbers
32
+ - --inline-source
33
+ - --title
34
+ - Meatloaf
35
+ - --main
36
+ - README.rdoc
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: '1.2'
51
+ requirements: []
52
+ rubyforge_project: meatloaf
53
+ rubygems_version: 1.8.10
54
+ signing_key:
55
+ specification_version: 3
56
+ summary: Compiles similar bg images into one, using SASS directives.
57
+ test_files: []