webs 0.1.44 → 0.1.45

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
  require 'rake'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new('webs', '0.1.44') do |p|
6
+ Echoe.new('webs', '0.1.45') do |p|
7
7
  p.description = "Reusable webs stuff."
8
8
  p.url = "https://colczak@github.com/websdev/websgem.git"
9
9
  p.author = "Chuck Olczak"
@@ -1,4 +1,4 @@
1
- if Rails::VERSION::STRING[0].to_i < 3
1
+ if Rails::VERSION::STRING[0..0].to_i < 3
2
2
  # adds the fw:intl tag to options values
3
3
  module ActionView
4
4
  module Helpers
data/lib/webs.rb CHANGED
@@ -7,7 +7,7 @@ require dir + 'helper/params'
7
7
  require dir + 'helper/tags'
8
8
 
9
9
  module Webs
10
- VERSION = '0.1.44'.freeze
10
+ VERSION = '0.1.45'.freeze
11
11
 
12
12
  def self.app_title
13
13
  APP_NAME.titleize
data/webs.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{webs}
5
- s.version = "0.1.44"
5
+ s.version = "0.1.45"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Chuck Olczak"]
9
- s.date = %q{2011-06-09}
9
+ s.date = %q{2011-06-14}
10
10
  s.description = %q{Reusable webs stuff.}
11
11
  s.email = %q{chuck@webs.com}
12
12
  gemfiles = Dir.glob( "**/*.{erb,rb,rdoc}" )
metadata CHANGED
@@ -1,102 +1,121 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: webs
3
- version: !ruby/object:Gem::Version
4
- version: 0.1.44
3
+ version: !ruby/object:Gem::Version
4
+ hash: 65
5
5
  prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 45
10
+ version: 0.1.45
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Chuck Olczak
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2011-06-09 00:00:00.000000000 -04:00
17
+
18
+ date: 2011-06-14 00:00:00 -04:00
13
19
  default_executable:
14
20
  dependencies: []
21
+
15
22
  description: Reusable webs stuff.
16
23
  email: chuck@webs.com
17
24
  executables: []
25
+
18
26
  extensions: []
19
- extra_rdoc_files:
20
- - lib/views/layouts/webs_page.html.erb
27
+
28
+ extra_rdoc_files:
21
29
  - lib/views/layouts/webs_utility.html.erb
22
- - lib/views/shared/_error_msgs.html.erb
23
- - lib/views/shared/_flash_msg.html.erb
30
+ - lib/views/layouts/webs_page.html.erb
24
31
  - lib/views/shared/_jquery_noconflict.html.erb
25
32
  - lib/views/shared/_webs_info.html.erb
26
- - lib/cache/cache.rb
27
- - lib/config/initializers/http_accept_patch.rb
28
- - lib/config/initializers/intl_select.rb
29
- - lib/config/initializers/webs_view_path.rb
30
- - lib/config/webs_constants.rb
31
- - lib/config/webs_initializer.rb
32
- - lib/controller/alive_controller.rb
33
+ - lib/views/shared/_flash_msg.html.erb
34
+ - lib/views/shared/_error_msgs.html.erb
33
35
  - lib/controller/info_controller.rb
34
- - lib/controller/permission_converter.rb
35
- - lib/controller/url_for_context_path.rb
36
36
  - lib/controller/webs_controller.rb
37
- - lib/helper/application.rb
38
- - lib/helper/params.rb
37
+ - lib/controller/url_for_context_path.rb
38
+ - lib/controller/alive_controller.rb
39
+ - lib/controller/permission_converter.rb
39
40
  - lib/helper/tags.rb
41
+ - lib/helper/params.rb
42
+ - lib/helper/application.rb
40
43
  - lib/middleware/parameter_fixer.rb
41
- - lib/test/webs_test_helper.rb
42
44
  - lib/webs.rb
43
- - README.rdoc
44
- files:
45
- - lib/views/layouts/webs_page.html.erb
46
- - lib/views/layouts/webs_utility.html.erb
47
- - lib/views/shared/_error_msgs.html.erb
48
- - lib/views/shared/_flash_msg.html.erb
49
- - lib/views/shared/_jquery_noconflict.html.erb
50
- - lib/views/shared/_webs_info.html.erb
51
45
  - lib/cache/cache.rb
46
+ - lib/test/webs_test_helper.rb
47
+ - lib/config/webs_constants.rb
52
48
  - lib/config/initializers/http_accept_patch.rb
53
- - lib/config/initializers/intl_select.rb
54
49
  - lib/config/initializers/webs_view_path.rb
55
- - lib/config/webs_constants.rb
50
+ - lib/config/initializers/intl_select.rb
56
51
  - lib/config/webs_initializer.rb
57
- - lib/controller/alive_controller.rb
52
+ - README.rdoc
53
+ files:
54
+ - lib/views/layouts/webs_utility.html.erb
55
+ - lib/views/layouts/webs_page.html.erb
56
+ - lib/views/shared/_jquery_noconflict.html.erb
57
+ - lib/views/shared/_webs_info.html.erb
58
+ - lib/views/shared/_flash_msg.html.erb
59
+ - lib/views/shared/_error_msgs.html.erb
58
60
  - lib/controller/info_controller.rb
59
- - lib/controller/permission_converter.rb
60
- - lib/controller/url_for_context_path.rb
61
61
  - lib/controller/webs_controller.rb
62
- - lib/helper/application.rb
63
- - lib/helper/params.rb
62
+ - lib/controller/url_for_context_path.rb
63
+ - lib/controller/alive_controller.rb
64
+ - lib/controller/permission_converter.rb
64
65
  - lib/helper/tags.rb
66
+ - lib/helper/params.rb
67
+ - lib/helper/application.rb
65
68
  - lib/middleware/parameter_fixer.rb
66
- - lib/test/webs_test_helper.rb
67
69
  - lib/webs.rb
70
+ - lib/cache/cache.rb
71
+ - lib/test/webs_test_helper.rb
72
+ - lib/config/webs_constants.rb
73
+ - lib/config/initializers/http_accept_patch.rb
74
+ - lib/config/initializers/webs_view_path.rb
75
+ - lib/config/initializers/intl_select.rb
76
+ - lib/config/webs_initializer.rb
68
77
  - README.rdoc
69
78
  - Rakefile
70
79
  - webs.gemspec
71
80
  has_rdoc: true
72
81
  homepage: http://github.com/websdotcom/websgem
73
82
  licenses: []
83
+
74
84
  post_install_message:
75
- rdoc_options:
85
+ rdoc_options:
76
86
  - --line-numbers
77
87
  - --inline-source
78
88
  - --title
79
89
  - Webs
80
90
  - --main
81
91
  - README.rdoc
82
- require_paths:
92
+ require_paths:
83
93
  - lib
84
- required_ruby_version: !ruby/object:Gem::Requirement
94
+ required_ruby_version: !ruby/object:Gem::Requirement
85
95
  none: false
86
- requirements:
87
- - - ! '>='
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ hash: 3
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
104
  none: false
92
- requirements:
93
- - - ! '>='
94
- - !ruby/object:Gem::Version
95
- version: '1.2'
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ hash: 11
109
+ segments:
110
+ - 1
111
+ - 2
112
+ version: "1.2"
96
113
  requirements: []
114
+
97
115
  rubyforge_project: webs
98
116
  rubygems_version: 1.6.2
99
117
  signing_key:
100
118
  specification_version: 3
101
119
  summary: Reusable webs stuff.
102
120
  test_files: []
121
+