rails-brochure 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 ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in rails-brochure.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,4 @@
1
+ require File.dirname(__FILE__) + '/rails-brochure/home_content'
2
+ require File.dirname(__FILE__) + '/rails-brochure/route_reloader'
3
+ require File.dirname(__FILE__) + '/rails-brochure/engine'
4
+
@@ -0,0 +1,5 @@
1
+ module Rails
2
+ module Brochure
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "rails-brochure/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "rails-brochure"
7
+ s.version = Rails::Brochure::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Dan Hixon"]
10
+ s.email = ["danhixon@gmail.com"]
11
+ s.homepage = "http://github.com/danhixon/rails-brochure"
12
+ s.summary = %q{Rails Plugin for hosting static content files a-la-php with named routes.}
13
+ s.description = %q{Rails Plugin for hosting static content files a-la-php with named routes. It is a lot like high voltage but you get named routes and '/pages' is not part of your routes.}
14
+
15
+ s.add_dependency('rails', '>= 3.0.0')
16
+
17
+ s.rubyforge_project = "rails-brochure"
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
+ s.require_paths = ["lib"]
23
+ end
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-brochure
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Dan Hixon
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-29 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 7
30
+ segments:
31
+ - 3
32
+ - 0
33
+ - 0
34
+ version: 3.0.0
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ description: Rails Plugin for hosting static content files a-la-php with named routes. It is a lot like high voltage but you get named routes and '/pages' is not part of your routes.
38
+ email:
39
+ - danhixon@gmail.com
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - .gitignore
48
+ - Gemfile
49
+ - Rakefile
50
+ - lib/rails-brochure.rb
51
+ - lib/rails-brochure/version.rb
52
+ - rails-brochure.gemspec
53
+ has_rdoc: true
54
+ homepage: http://github.com/danhixon/rails-brochure
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options: []
59
+
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ hash: 3
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ hash: 3
77
+ segments:
78
+ - 0
79
+ version: "0"
80
+ requirements: []
81
+
82
+ rubyforge_project: rails-brochure
83
+ rubygems_version: 1.3.7
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: Rails Plugin for hosting static content files a-la-php with named routes.
87
+ test_files: []
88
+