endymion-origami 0.1.0 → 0.1.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/README.textile +1 -1
- data/lib/{chaise.rb → origami.rb} +0 -0
- data/origami.gemspec +5 -4
- data/version.yml +4 -0
- metadata +4 -3
data/README.textile
CHANGED
@@ -121,7 +121,7 @@ h2. Install
|
|
121
121
|
|
122
122
|
Do this for now:
|
123
123
|
|
124
|
-
script/plugin install
|
124
|
+
script/plugin install git://github.com/endymion/origami.git
|
125
125
|
|
126
126
|
This is how I'm trying to get it to work but I'm currently having problems making Origami available as a Ruby Gem:
|
127
127
|
|
File without changes
|
data/origami.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{origami}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ryan Porter", "Matthew James Taylor"]
|
9
|
-
s.date = %q{2009-05-
|
9
|
+
s.date = %q{2009-05-18}
|
10
10
|
s.description = %q{Origami is a Rails Engine plugin that handles the tedious parts of setting up HTML/CSS layoutspec.}
|
11
11
|
s.email = %q{rap@endymion.com}
|
12
12
|
s.extra_rdoc_files = [
|
@@ -69,7 +69,7 @@ Gem::Specification.new do |s|
|
|
69
69
|
"assets/bluetrip-css-framework/img/icons/xls.png",
|
70
70
|
"init.rb",
|
71
71
|
"install.rb",
|
72
|
-
"lib/
|
72
|
+
"lib/origami.rb",
|
73
73
|
"origami.gemspec",
|
74
74
|
"public/stylesheets/1_column_em.css",
|
75
75
|
"public/stylesheets/1_column_percentage.css",
|
@@ -94,7 +94,8 @@ Gem::Specification.new do |s|
|
|
94
94
|
"tasks/chaise_tasks.rake",
|
95
95
|
"test/chaise_test.rb",
|
96
96
|
"test/test_helper.rb",
|
97
|
-
"uninstall.rb"
|
97
|
+
"uninstall.rb",
|
98
|
+
"version.yml"
|
98
99
|
]
|
99
100
|
s.has_rdoc = true
|
100
101
|
s.rdoc_options = ["--charset=UTF-8"]
|
data/version.yml
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: endymion-origami
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Porter
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-05-
|
13
|
+
date: 2009-05-18 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies: []
|
16
16
|
|
@@ -79,7 +79,7 @@ files:
|
|
79
79
|
- assets/bluetrip-css-framework/img/icons/xls.png
|
80
80
|
- init.rb
|
81
81
|
- install.rb
|
82
|
-
- lib/
|
82
|
+
- lib/origami.rb
|
83
83
|
- origami.gemspec
|
84
84
|
- public/stylesheets/1_column_em.css
|
85
85
|
- public/stylesheets/1_column_percentage.css
|
@@ -105,6 +105,7 @@ files:
|
|
105
105
|
- test/chaise_test.rb
|
106
106
|
- test/test_helper.rb
|
107
107
|
- uninstall.rb
|
108
|
+
- version.yml
|
108
109
|
has_rdoc: true
|
109
110
|
homepage:
|
110
111
|
post_install_message:
|