webs 0.1.28 → 0.1.29

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/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
  require 'rake'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new('webs', '0.1.28') do |p|
6
+ Echoe.new('webs', '0.1.29') 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"
@@ -0,0 +1,2 @@
1
+ <%= javascript_include_tag 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' %>
2
+ <script type="text/javascript">$.noConflict();</script>
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.28'.freeze
10
+ VERSION = '0.1.29'.freeze
11
11
 
12
12
  def self.app_title
13
13
  APP_NAME.titleize
data/webs.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{webs}
5
- s.version = "0.1.28"
5
+ s.version = "0.1.29"
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"]
@@ -27,7 +27,8 @@ Gem::Specification.new do |s|
27
27
  "lib/views/layouts/webs_page.html.erb",
28
28
  "lib/views/layouts/webs_utility.html.erb",
29
29
  "lib/test/webs_test_helper.rb",
30
- "lib/views/shared/_webs_info.html.erb"
30
+ "lib/views/shared/_webs_info.html.erb",
31
+ "lib/views/shared/_jquery_noconflict.html.erb",
31
32
  ]
32
33
  s.extra_rdoc_files = gemfiles
33
34
  s.files = gemfiles + [ "Rakefile", "webs.gemspec" ]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: webs
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.28
5
+ version: 0.1.29
6
6
  platform: ruby
7
7
  authors:
8
8
  - Chuck Olczak
@@ -39,6 +39,7 @@ extra_rdoc_files:
39
39
  - lib/views/layouts/webs_utility.html.erb
40
40
  - lib/test/webs_test_helper.rb
41
41
  - lib/views/shared/_webs_info.html.erb
42
+ - lib/views/shared/_jquery_noconflict.html.erb
42
43
  files:
43
44
  - README.rdoc
44
45
  - lib/webs.rb
@@ -58,6 +59,7 @@ files:
58
59
  - lib/views/layouts/webs_utility.html.erb
59
60
  - lib/test/webs_test_helper.rb
60
61
  - lib/views/shared/_webs_info.html.erb
62
+ - lib/views/shared/_jquery_noconflict.html.erb
61
63
  - Rakefile
62
64
  - webs.gemspec
63
65
  has_rdoc: true