keynote 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of keynote might be problematic. Click here for more details.
- data/keynote.gemspec +7 -3
- data/lib/keynote/version.rb +1 -1
- metadata +7 -4
data/keynote.gemspec
CHANGED
@@ -4,9 +4,13 @@ require File.expand_path('../lib/keynote/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Ryan Fitzgerald"]
|
6
6
|
gem.email = ["rwfitzge@gmail.com"]
|
7
|
-
gem.
|
8
|
-
gem.
|
9
|
-
|
7
|
+
gem.summary = %q{Flexible presenters for Rails.}
|
8
|
+
gem.description = %q{
|
9
|
+
A presenter is an object that encapsulates view logic. Like Rails helpers,
|
10
|
+
presenters help you keep complex logic out of your templates. Keynote
|
11
|
+
provides a consistent interface for defining and instantiating presenters.
|
12
|
+
}
|
13
|
+
gem.homepage = "https://github.com/rf-/keynote"
|
10
14
|
|
11
15
|
gem.files = `git ls-files`.split($\)
|
12
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/keynote/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: keynote
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Ryan Fitzgerald
|
@@ -123,7 +123,10 @@ dependencies:
|
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
none: false
|
126
|
-
description:
|
126
|
+
description: ! "\n A presenter is an object that encapsulates view logic. Like
|
127
|
+
Rails helpers,\n presenters help you keep complex logic out of your templates.
|
128
|
+
Keynote\n provides a consistent interface for defining and instantiating presenters.\n
|
129
|
+
\ "
|
127
130
|
email:
|
128
131
|
- rwfitzge@gmail.com
|
129
132
|
executables: []
|
@@ -163,7 +166,7 @@ files:
|
|
163
166
|
- spec/railtie_spec.rb
|
164
167
|
- spec/rumble_spec.rb
|
165
168
|
- spec/test_case_spec.rb
|
166
|
-
homepage:
|
169
|
+
homepage: https://github.com/rf-/keynote
|
167
170
|
licenses: []
|
168
171
|
post_install_message:
|
169
172
|
rdoc_options: []
|
@@ -186,7 +189,7 @@ rubyforge_project:
|
|
186
189
|
rubygems_version: 1.8.24
|
187
190
|
signing_key:
|
188
191
|
specification_version: 3
|
189
|
-
summary:
|
192
|
+
summary: Flexible presenters for Rails.
|
190
193
|
test_files:
|
191
194
|
- spec/generator_spec.rb
|
192
195
|
- spec/helper.rb
|