happy-titles 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_Store
2
+ pkg
data/Rakefile CHANGED
@@ -16,6 +16,7 @@ begin
16
16
  gemspec.homepage = "http://github.com/andypearson/happy-titles"
17
17
  gemspec.authors = ["Andy Pearson"]
18
18
  end
19
+ Jeweler::GemcutterTasks.new
19
20
  rescue LoadError
20
21
  puts "Jeweler not available. Install it with: gem install jeweler"
21
22
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0
1
+ 0.9.1
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{happy-titles}
8
+ s.version = "0.9.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Andy Pearson"]
12
+ s.date = %q{2010-06-01}
13
+ s.email = %q{andy@andy-pearson.com}
14
+ s.extra_rdoc_files = [
15
+ "README.markdown"
16
+ ]
17
+ s.files = [
18
+ ".git_ignore",
19
+ ".gitignore",
20
+ "MIT-LICENCE",
21
+ "README.markdown",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "happy-titles.gemspec",
25
+ "lib/happy_titles.rb",
26
+ "rails/init.rb",
27
+ "spec/happy_titles_spec.rb",
28
+ "spec/spec_helper.rb"
29
+ ]
30
+ s.homepage = %q{http://github.com/andypearson/happy-titles}
31
+ s.rdoc_options = ["--charset=UTF-8"]
32
+ s.require_paths = ["lib"]
33
+ s.rubygems_version = %q{1.3.6}
34
+ s.summary = %q{A simple way to handle page titles in your layouts.}
35
+ s.test_files = [
36
+ "spec/happy_titles_spec.rb",
37
+ "spec/spec_helper.rb"
38
+ ]
39
+
40
+ if s.respond_to? :specification_version then
41
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
+ else
46
+ end
47
+ else
48
+ end
49
+ end
50
+
data/rails/init.rb ADDED
@@ -0,0 +1,2 @@
1
+ require File.join(File.dirname(__FILE__), *%w[.. lib happy_titles])
2
+ ActionView::Base.send(:include, HappyTitles)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 0
9
- version: 0.9.0
8
+ - 1
9
+ version: 0.9.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andy Pearson
@@ -28,12 +28,14 @@ extra_rdoc_files:
28
28
  - README.markdown
29
29
  files:
30
30
  - .git_ignore
31
+ - .gitignore
31
32
  - MIT-LICENCE
32
33
  - README.markdown
33
34
  - Rakefile
34
35
  - VERSION
35
- - init.rb
36
+ - happy-titles.gemspec
36
37
  - lib/happy_titles.rb
38
+ - rails/init.rb
37
39
  - spec/happy_titles_spec.rb
38
40
  - spec/spec_helper.rb
39
41
  has_rdoc: true
data/init.rb DELETED
@@ -1,2 +0,0 @@
1
- require File.dirname(__FILE__) + '/lib/happy_titles'
2
- ActionView::Base.send(:include, HappyTitles)