xws_breadcrumbs 0.0.1

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/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in breadcrumbs.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,2 @@
1
+ <h1>breadcrumbs</h1>
2
+
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "breadcrumbs/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "xws_breadcrumbs"
7
+ s.version = Breadcrumbs::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["xarala"]
10
+ s.email = ["info@xarala.sn"]
11
+ s.homepage = "http://www.xarala.sn"
12
+ s.summary = %q{A rails 3 engine providing breadcrumbs the REST way }
13
+ s.description = %q{A rails 3 engine providing breadcrumbs the REST way}
14
+
15
+ s.rubyforge_project = "breadcrumbs"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
22
+
@@ -0,0 +1,3 @@
1
+ BREADCRUMBS_PATH = File.dirname(__FILE__) + "/breadcrumbs"
2
+ require "#{BREADCRUMBS_PATH}/engine.rb"
3
+
@@ -0,0 +1,10 @@
1
+ require "breadcrumbs"
2
+ require "rails"
3
+
4
+ module Breadcrumbs
5
+
6
+ class Engine < Rails::Engine
7
+ end
8
+
9
+ end
10
+
@@ -0,0 +1,3 @@
1
+ module Breadcrumbs
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xws_breadcrumbs
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - xarala
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-05-20 00:00:00 +00:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: A rails 3 engine providing breadcrumbs the REST way
18
+ email:
19
+ - info@xarala.sn
20
+ executables: []
21
+
22
+ extensions: []
23
+
24
+ extra_rdoc_files: []
25
+
26
+ files:
27
+ - .gitignore
28
+ - Gemfile
29
+ - Rakefile
30
+ - app/views/breadcrumbs/_breadcrumbs.html.erb
31
+ - breadcrumbs.gemspec
32
+ - lib/breadcrumbs.rb
33
+ - lib/breadcrumbs/engine.rb
34
+ - lib/breadcrumbs/version.rb
35
+ has_rdoc: true
36
+ homepage: http://www.xarala.sn
37
+ licenses: []
38
+
39
+ post_install_message:
40
+ rdoc_options: []
41
+
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ none: false
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: "0"
56
+ requirements: []
57
+
58
+ rubyforge_project: breadcrumbs
59
+ rubygems_version: 1.5.3
60
+ signing_key:
61
+ specification_version: 3
62
+ summary: A rails 3 engine providing breadcrumbs the REST way
63
+ test_files: []
64
+