krasivotokak-espresso 0.0.9 → 0.0.15
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/VERSION +1 -1
- data/espresso.gemspec +5 -2
- data/lib/espresso/helpers.rb +24 -0
- data/lib/espresso/locales/en.yml +5 -0
- data/lib/espresso/locales/ru.yml +5 -0
- data/lib/espresso.rb +5 -0
- metadata +6 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.15
|
data/espresso.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{espresso}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.15"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Alexander Semyonov"]
|
12
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-09-01}
|
13
13
|
s.description = %q{Useful templates for controller and model functions}
|
14
14
|
s.email = %q{rotuka@rotuka.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -25,6 +25,9 @@ Gem::Specification.new do |s|
|
|
25
25
|
"espresso.gemspec",
|
26
26
|
"init.rb",
|
27
27
|
"lib/espresso.rb",
|
28
|
+
"lib/espresso/helpers.rb",
|
29
|
+
"lib/espresso/locales/en.yml",
|
30
|
+
"lib/espresso/locales/ru.yml",
|
28
31
|
"lib/espresso/model.rb",
|
29
32
|
"lib/espresso/objects_controller.rb",
|
30
33
|
"test/espresso_test.rb",
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Espresso
|
2
|
+
module Helpers
|
3
|
+
include WillPaginate::ViewHelpers
|
4
|
+
|
5
|
+
def simple_search
|
6
|
+
form_tag(url_for(:action => :index), :method => :get, :class => 'b_search b_search-simple') do
|
7
|
+
inform = returning '' do |result|
|
8
|
+
result << text_field_tag(:q, params[:q])
|
9
|
+
result << submit_tag(t('krasivotokak.espresso.find', :default => 'Find!'), :class => 'submit')
|
10
|
+
end
|
11
|
+
concat inform
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def will_paginate_with_i18n(collection, options = {})
|
16
|
+
will_paginate_without_i18n(collection,
|
17
|
+
options.merge({
|
18
|
+
:class => 'b_pagination',
|
19
|
+
:previous_label => t('krasivotokak.espresso.previous', :default => '← Previous'),
|
20
|
+
:next_label => t('krasivotokak.espresso.next', :default => 'Next →')}))
|
21
|
+
end
|
22
|
+
alias_method_chain :will_paginate, :i18n
|
23
|
+
end
|
24
|
+
end
|
data/lib/espresso.rb
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
module Espresso
|
2
|
+
def self.locale_files
|
3
|
+
Dir[File.join(File.dirname(__FILE__), 'espresso', 'locales', '*')]
|
4
|
+
end
|
2
5
|
end
|
3
6
|
|
4
7
|
require 'espresso/objects_controller'
|
@@ -6,4 +9,6 @@ require 'espresso/model'
|
|
6
9
|
|
7
10
|
if defined? Rails
|
8
11
|
ActiveRecord::Base.send :include, Espresso::Model if defined? ActiveRecord
|
12
|
+
ActionView::Base.send :include, Espresso::Helpers if defined? ActionView
|
13
|
+
I18n.load_path.unshift(*Espresso.locale_files)
|
9
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: krasivotokak-espresso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Semyonov
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-01 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -70,13 +70,15 @@ files:
|
|
70
70
|
- espresso.gemspec
|
71
71
|
- init.rb
|
72
72
|
- lib/espresso.rb
|
73
|
+
- lib/espresso/helpers.rb
|
74
|
+
- lib/espresso/locales/en.yml
|
75
|
+
- lib/espresso/locales/ru.yml
|
73
76
|
- lib/espresso/model.rb
|
74
77
|
- lib/espresso/objects_controller.rb
|
75
78
|
- test/espresso_test.rb
|
76
79
|
- test/test_helper.rb
|
77
80
|
has_rdoc: false
|
78
81
|
homepage: http://github.com/krasivotokak/espresso
|
79
|
-
licenses:
|
80
82
|
post_install_message:
|
81
83
|
rdoc_options:
|
82
84
|
- --charset=UTF-8
|
@@ -97,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
99
|
requirements: []
|
98
100
|
|
99
101
|
rubyforge_project:
|
100
|
-
rubygems_version: 1.
|
102
|
+
rubygems_version: 1.2.0
|
101
103
|
signing_key:
|
102
104
|
specification_version: 3
|
103
105
|
summary: Rails extender to simplify rails development
|