tabs_on_rails 0.8.1 → 0.8.2

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.
@@ -1,6 +1,11 @@
1
1
  = Changelog
2
2
 
3
3
 
4
+ == Release 0.8.2
5
+
6
+ * CHANGED: GitHub Gem Building is Defunct. The gem is now hosted on Gemcutter (see http://github.com/blog/515-gem-building-is-defunct)
7
+
8
+
4
9
  == Release 0.8.1
5
10
 
6
11
  * CHANGED: Controller#set_tab now uses #send instead of #instance_eval (better performance and more security)
@@ -17,16 +17,19 @@ Note. TabsOnRails doesn't work with Rails 2.1 or previous versions (see {Ticket
17
17
  === As a Gem
18
18
 
19
19
  This is the preferred way to install TabsOnRails and the best way if you want install a stable version.
20
+ The GEM is hosted on {Gemcutter}[http://gemcutter.org/gems/tabs_on_rails].
20
21
 
21
- $ gem install weppos-tabs_on_rails --source http://gems.github.com
22
+ $ gem install tabs_on_rails --source http://gemcutter.org/
22
23
 
23
- You can specify the GEM dependency in your application environment.rb file:
24
+ With Rails >= 2.2, you can specify the GEM dependency in your environment.rb file so that Rails will automatically check the requirement on startup.
24
25
 
25
26
  Rails::Initializer.run do |config|
26
27
 
27
28
  # other configurations
29
+ # ...
30
+
31
+ config.gem "tabs_on_rails", :source => "http://gemcutter.org/"
28
32
 
29
- config.gem "weppos-tabs_on_rails", :lib => "tabs_on_rails", :source => "http://gems.github.com"
30
33
  end
31
34
 
32
35
  === As a Plugin
@@ -19,7 +19,7 @@ module TabsOnRails
19
19
  module Version
20
20
  MAJOR = 0
21
21
  MINOR = 8
22
- TINY = 1
22
+ TINY = 2
23
23
 
24
24
  STRING = [MAJOR, MINOR, TINY].join('.')
25
25
  end
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{tabs_on_rails}
5
- s.version = "0.8.1"
5
+ s.version = "0.8.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Simone Carletti"]
9
- s.date = %q{2009-10-09}
9
+ s.date = %q{2009-10-12}
10
10
  s.description = %q{ TabsOnRails is a simple Ruby on Rails plugin for creating and managing Tabs. It provides helpers for creating tabs with a flexible interface.
11
11
  }
12
12
  s.email = %q{weppos@weppos.net}
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.homepage = %q{http://code.simonecarletti.com/tabsonrails}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tabs_on_rails", "--main", "README.rdoc"]
17
17
  s.require_paths = ["lib"]
18
- s.rubygems_version = %q{1.3.4}
18
+ s.rubygems_version = %q{1.3.5}
19
19
  s.summary = %q{A simple Ruby on Rails plugin for creating and managing Tabs.}
20
20
  s.test_files = ["test/builder_test.rb", "test/controller_mixin_helpers_test.rb", "test/controller_mixin_test.rb", "test/controller_mixin_with_controller_test.rb", "test/tabs_builder_test.rb", "test/tabs_on_rails_test.rb", "test/test_helper.rb"]
21
21
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabs_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simone Carletti
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-09 00:00:00 +02:00
12
+ date: 2009-10-12 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  requirements: []
100
100
 
101
101
  rubyforge_project:
102
- rubygems_version: 1.3.4
102
+ rubygems_version: 1.3.5
103
103
  signing_key:
104
104
  specification_version: 3
105
105
  summary: A simple Ruby on Rails plugin for creating and managing Tabs.