Fingertips-peiji-san 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
- = PeijiSan
1
+ = Peiji-San
2
2
 
3
- PeijiSan uses named scopes to create a thin pagination layer.
3
+ Peiji-San uses named scopes to create a thin pagination layer.
4
4
 
5
5
  Model:
6
6
 
@@ -0,0 +1,41 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |s|
7
+ s.name = "peiji-san"
8
+ s.homepage = "http://github.com/Fingertips/peiji-san"
9
+ s.email = "eloy.de.enige@gmail.com"
10
+ s.authors = ["Eloy Duran"]
11
+ s.summary = s.description = "PeijiSan is a Rails plugin which uses named scopes to create a thin pagination layer."
12
+ s.files = FileList['**/**'] # tmp until we've patched Jeweler to be able to easily add files to defaults
13
+ end
14
+ rescue LoadError
15
+ end
16
+
17
+ begin
18
+ require 'jewelry_portfolio/tasks'
19
+ JewelryPortfolio::Tasks.new do |p|
20
+ p.account = 'Fingertips'
21
+ end
22
+ rescue LoadError
23
+ end
24
+
25
+ require 'rake/rdoctask'
26
+ Rake::RDocTask.new do |rdoc|
27
+ rdoc.rdoc_dir = 'rdoc'
28
+ rdoc.title = 'PeijiSan'
29
+ rdoc.options << '--line-numbers' << '--inline-source' << '--charset=utf-8'
30
+ rdoc.rdoc_files.include('README*', 'LICENSE')
31
+ rdoc.rdoc_files.include('lib/**/*.rb')
32
+ end
33
+
34
+ require 'rake/testtask'
35
+ Rake::TestTask.new(:test) do |test|
36
+ test.libs << 'lib' << 'test'
37
+ test.pattern = 'test/**/*_test.rb'
38
+ test.verbose = false
39
+ end
40
+
41
+ task :default => :test
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 0
4
+ :patch: 1
@@ -1,4 +1,4 @@
1
- # PeijiSan uses named scopes to create a thin pagination layer.
1
+ # Peiji-San uses named scopes to create a thin pagination layer.
2
2
  #
3
3
  # Example:
4
4
  #
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{peiji-san}
5
+ s.version = "0.1.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Eloy Duran"]
9
+ s.date = %q{2009-03-09}
10
+ s.description = %q{PeijiSan is a Rails plugin which uses named scopes to create a thin pagination layer.}
11
+ s.email = %q{eloy.de.enige@gmail.com}
12
+ s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
13
+ s.files = ["lib", "lib/peiji_san", "lib/peiji_san/view_helper.rb", "lib/peiji_san.rb", "LICENSE", "peiji-san.gemspec", "rails", "rails/init.rb", "Rakefile", "README.rdoc", "test", "test/peiji_san_test.rb", "test/test_helper.rb", "test/view_helper_test.rb", "VERSION.yml"]
14
+ s.has_rdoc = true
15
+ s.homepage = %q{http://github.com/Fingertips/peiji-san}
16
+ s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
17
+ s.require_paths = ["lib"]
18
+ s.rubygems_version = %q{1.3.1}
19
+ s.summary = %q{PeijiSan is a Rails plugin which uses named scopes to create a thin pagination layer.}
20
+
21
+ if s.respond_to? :specification_version then
22
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
23
+ s.specification_version = 2
24
+
25
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ else
27
+ end
28
+ else
29
+ end
30
+ end
@@ -0,0 +1,2 @@
1
+ require 'peiji_san'
2
+ require 'peiji_san/view_helper'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Fingertips-peiji-san
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-06 00:00:00 -08:00
12
+ date: 2009-03-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -23,15 +23,21 @@ extra_rdoc_files:
23
23
  - README.rdoc
24
24
  - LICENSE
25
25
  files:
26
- - README.rdoc
27
- - VERSION.yml
26
+ - lib
28
27
  - lib/peiji_san
29
28
  - lib/peiji_san/view_helper.rb
30
29
  - lib/peiji_san.rb
30
+ - LICENSE
31
+ - peiji-san.gemspec
32
+ - rails
33
+ - rails/init.rb
34
+ - Rakefile
35
+ - README.rdoc
36
+ - test
31
37
  - test/peiji_san_test.rb
32
38
  - test/test_helper.rb
33
39
  - test/view_helper_test.rb
34
- - LICENSE
40
+ - VERSION.yml
35
41
  has_rdoc: true
36
42
  homepage: http://github.com/Fingertips/peiji-san
37
43
  post_install_message: