chunks 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
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 chunks.gemspec
4
+ gemspec
data/README ADDED
@@ -0,0 +1,10 @@
1
+ A thoroughly civilized CMS for Rails apps which deal with user generated content.
2
+ Chunks is a Rails engine providing out-of-the-box management and rendering for pages composed of self-contained chunks of content.
3
+ Each Chunk is comprised of an edit view, a public view, and a view model which will be updated, validated, and invoked by the ChunksPublicController if server-side interaction is required.
4
+ The Chunks controller quickly delegates all responsibility for logic and page flow to an individual Chunk view model while the framework gets out of the way altogether, allowing for extremely easy extension and migration onto or off the Chunks framework.
5
+ Documentation and extensions available at http://www.chunkscms.com.
6
+
7
+ Chunks is somewhat opinionated and will make a few assumptions:
8
+ - You are writing a Rails 3 app.
9
+ - A "users" table exists.
10
+ - JQuery is available.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
data/chunks.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "chunks/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "chunks"
7
+ s.version = Chunks::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.rubyforge_project = "chunks"
10
+ s.authors = ["Rick Grundy"]
11
+ s.email = ["rick@chunkscms.com"]
12
+ s.homepage = "http://www.chunkscms.com"
13
+ s.summary = %q{Content Management on Rails}
14
+ s.description = <<-EOS
15
+ A thoroughly civilized CMS for Rails apps which deal with user generated content.
16
+ Chunks is a Rails engine providing out-of-the-box management and rendering for pages composed of self-contained chunks of content.
17
+ Each Chunk is comprised of an edit view, a public view, and a view model which will be updated, validated, and invoked by the ChunksPublicController if server-side interaction is required.
18
+ The Chunks controller quickly delegates all responsibility for logic and page flow to an individual Chunk view model while the framework gets out of the way altogether, allowing for extremely easy extension and migration onto or off the Chunks framework.
19
+ Documentation and extensions available at http://www.chunkscms.com.
20
+ EOS
21
+
22
+ s.add_dependency(%q<haml>, [">= 0"])
23
+
24
+ s.files = `git ls-files`.split("\n")
25
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
26
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
27
+ s.require_paths = ["lib"]
28
+ end
data/lib/chunks.rb ADDED
@@ -0,0 +1 @@
1
+ require 'chunks/engine'
@@ -0,0 +1,3 @@
1
+ module Chunks
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chunks
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Rick Grundy
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-05-06 00:00:00 -07:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: haml
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ description: " A thoroughly civilized CMS for Rails apps which deal with user generated content. \n Chunks is a Rails engine providing out-of-the-box management and rendering for pages composed of self-contained chunks of content. \n Each Chunk is comprised of an edit view, a public view, and a view model which will be updated, validated, and invoked by the ChunksPublicController if server-side interaction is required.\n The Chunks controller quickly delegates all responsibility for logic and page flow to an individual Chunk view model while the framework gets out of the way altogether, allowing for extremely easy extension and migration onto or off the Chunks framework.\n Documentation and extensions available at http://www.chunkscms.com.\n"
28
+ email:
29
+ - rick@chunkscms.com
30
+ executables: []
31
+
32
+ extensions: []
33
+
34
+ extra_rdoc_files: []
35
+
36
+ files:
37
+ - .gitignore
38
+ - Gemfile
39
+ - README
40
+ - Rakefile
41
+ - chunks.gemspec
42
+ - lib/chunks.rb
43
+ - lib/chunks/version.rb
44
+ has_rdoc: true
45
+ homepage: http://www.chunkscms.com
46
+ licenses: []
47
+
48
+ post_install_message:
49
+ rdoc_options: []
50
+
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "0"
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ requirements: []
66
+
67
+ rubyforge_project: chunks
68
+ rubygems_version: 1.5.0
69
+ signing_key:
70
+ specification_version: 3
71
+ summary: Content Management on Rails
72
+ test_files: []
73
+