edifice 1.1.0 → 1.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.md +10 -1
- data/edifice.gemspec +3 -3
- data/lib/edifice/version.rb +1 -1
- metadata +7 -7
data/README.md
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
Edifice
|
|
2
2
|
=======
|
|
3
3
|
|
|
4
|
-
Edifice.js is a rails gem
|
|
4
|
+
Edifice.js is a rails gem for integrating your JS + CSS more closely with your Rails 3 workflow. There are two closely related gems--[edifice-forms](/tmeasday/edifice-forms) and [edifice-widgets](/tmeasday/edifice-widgets)--which do not rely on, but complement it well.
|
|
5
|
+
|
|
6
|
+
Installation
|
|
7
|
+
------------
|
|
8
|
+
|
|
9
|
+
To install, simply add to your Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'edifice'
|
|
13
|
+
```
|
|
5
14
|
|
|
6
15
|
Page Specific CSS
|
|
7
16
|
-----------------
|
data/edifice.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Tom Coleman", "Zoltan Olah", "Joe Dollard"]
|
|
10
10
|
s.email = ["tom@thesnail.org", "zol@me.com", "jdollard@gmail.com"]
|
|
11
|
-
s.homepage = "http://
|
|
12
|
-
s.summary = %q{
|
|
13
|
-
s.description = %q{
|
|
11
|
+
s.homepage = "http://edifice-rails.com"
|
|
12
|
+
s.summary = %q{Edifice is a Rails gem that simplifies the way you manage your CSS and Javascript.}
|
|
13
|
+
s.description = %q{Edifice makes your Rails life easier. It's designed to simplify CSS & JS integration in your Rails app by following the principle of DRY, less obtrusive markup. Stop writing unnecessary javascript boilerplate, stop wasting time namespacing view CSS and start enjoying rails again..}
|
|
14
14
|
|
|
15
15
|
s.rubyforge_project = "edifice"
|
|
16
16
|
|
data/lib/edifice/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edifice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tom Coleman
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2012-01-
|
|
20
|
+
date: 2012-01-22 00:00:00 Z
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
23
23
|
name: rake
|
|
@@ -89,7 +89,7 @@ dependencies:
|
|
|
89
89
|
version: "0"
|
|
90
90
|
type: :development
|
|
91
91
|
version_requirements: *id005
|
|
92
|
-
description:
|
|
92
|
+
description: Edifice makes your Rails life easier. It's designed to simplify CSS & JS integration in your Rails app by following the principle of DRY, less obtrusive markup. Stop writing unnecessary javascript boilerplate, stop wasting time namespacing view CSS and start enjoying rails again..
|
|
93
93
|
email:
|
|
94
94
|
- tom@thesnail.org
|
|
95
95
|
- zol@me.com
|
|
@@ -157,7 +157,7 @@ files:
|
|
|
157
157
|
- spec/rails3.1/config/routes.rb
|
|
158
158
|
- spec/rails3.1/log/.gitkeep
|
|
159
159
|
- spec/spec_helper.rb
|
|
160
|
-
homepage: http://
|
|
160
|
+
homepage: http://edifice-rails.com
|
|
161
161
|
licenses: []
|
|
162
162
|
|
|
163
163
|
post_install_message:
|
|
@@ -189,7 +189,7 @@ rubyforge_project: edifice
|
|
|
189
189
|
rubygems_version: 1.8.10
|
|
190
190
|
signing_key:
|
|
191
191
|
specification_version: 3
|
|
192
|
-
summary:
|
|
192
|
+
summary: Edifice is a Rails gem that simplifies the way you manage your CSS and Javascript.
|
|
193
193
|
test_files:
|
|
194
194
|
- spec/edifice_controller_spec.rb
|
|
195
195
|
- spec/javascript_event_spec.rb
|