rails-ess 0.9.3 → 1.0.0
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 +6 -5
- data/lib/rails-ess/version.rb +1 -1
- data/rails-ess.gemspec +2 -2
- metadata +5 -5
data/README.md
CHANGED
|
@@ -3,13 +3,13 @@ rails-ess [](https://travis-ci.org/essfeed/rails-ess)
|
|
5
5
|
|
|
6
|
-
Generate ESS XML feeds with Ruby
|
|
6
|
+
Generate and parse ESS XML feeds with Ruby on Rails
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
|
-
gem 'rails-ess', '~> 0.
|
|
12
|
+
gem 'rails-ess', '~> 1.0.0'
|
|
13
13
|
|
|
14
14
|
And then execute:
|
|
15
15
|
|
|
@@ -17,7 +17,7 @@ And then execute:
|
|
|
17
17
|
|
|
18
18
|
Or install it yourself as:
|
|
19
19
|
|
|
20
|
-
$ gem install rails-ess -v "0.
|
|
20
|
+
$ gem install rails-ess -v "1.0.0"
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
@@ -82,8 +82,9 @@ end
|
|
|
82
82
|
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
-
More information on building
|
|
86
|
-
of the 'ess' gem:
|
|
85
|
+
More information on building and parsing ESS feeds in Ruby can be
|
|
86
|
+
found in the README of the 'ess' gem:
|
|
87
|
+
https://github.com/essfeed/ruby-ess .
|
|
87
88
|
|
|
88
89
|
More information on ESS and what tags and options are available can
|
|
89
90
|
be found on http://essfeed.org/ .
|
data/lib/rails-ess/version.rb
CHANGED
data/rails-ess.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.version = ESS::Rails::VERSION
|
|
9
9
|
gem.authors = ["Marjan Povolni","Brice Pissard"]
|
|
10
10
|
gem.email = ["marian.povolny@gmail.com"]
|
|
11
|
-
gem.description = %q{This gem extends Rails with the support for ESS feed generation using Builder like
|
|
11
|
+
gem.description = %q{This gem extends Rails with the support for ESS feed generation using Builder like syntax.}
|
|
12
12
|
gem.summary = %q{Rails extensions for ESS XML Feeds}
|
|
13
13
|
gem.homepage = "https://github.com/essfeed/rails-ess"
|
|
14
14
|
|
|
@@ -17,5 +17,5 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.add_runtime_dependency "ess", "0.
|
|
20
|
+
gem.add_runtime_dependency "ess", "1.0.0"
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-ess
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-06-
|
|
13
|
+
date: 2013-06-14 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ess
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
requirements:
|
|
20
20
|
- - '='
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.
|
|
22
|
+
version: 1.0.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -27,9 +27,9 @@ dependencies:
|
|
|
27
27
|
requirements:
|
|
28
28
|
- - '='
|
|
29
29
|
- !ruby/object:Gem::Version
|
|
30
|
-
version: 0.
|
|
30
|
+
version: 1.0.0
|
|
31
31
|
description: This gem extends Rails with the support for ESS feed generation using
|
|
32
|
-
Builder like
|
|
32
|
+
Builder like syntax.
|
|
33
33
|
email:
|
|
34
34
|
- marian.povolny@gmail.com
|
|
35
35
|
executables: []
|