referencia 0.1.0
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.
- checksums.yaml +7 -0
- data/.coveralls.yml +2 -0
- data/.gitignore +10 -0
- data/.travis.yml +8 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/Guardfile +82 -0
- data/LICENSE.txt +21 -0
- data/README.md +45 -0
- data/Rakefile +5 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/referencia.rb +6 -0
- data/lib/referencia/clase.rb +82 -0
- data/lib/referencia/lista.rb +61 -0
- data/lib/referencia/version.rb +3 -0
- data/referencia.gemspec +34 -0
- metadata +220 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3b591d7e82a402e0a6d821b8bdc8dc163b1ad751
|
|
4
|
+
data.tar.gz: 6f86dcc7aed2249ea06ab998e9388dff0c02d8dd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 811e320a3e13ea2a50f4f2773e696a7247f3395a51231539f769511bdc4eabaebfb1a16dfe09021b8db673d4decf526b78a8e596cff5b589d326a15112c6f335
|
|
7
|
+
data.tar.gz: 6570c880e38732dfae871130efa58d051a71bf6a0472db14550c14a8e782408acffa643bf4e3f5d8253fd4e35754862e004bb8c4a975048be49433839b586df3
|
data/.coveralls.yml
ADDED
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Contributor Code of Conduct
|
|
2
|
+
|
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
|
4
|
+
|
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
|
6
|
+
|
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
|
8
|
+
|
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
|
10
|
+
|
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
|
12
|
+
|
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/Guardfile
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# A sample Guardfile
|
|
2
|
+
# More info at https://github.com/guard/guard#readme
|
|
3
|
+
|
|
4
|
+
## Uncomment and set this to only include directories you want to watch
|
|
5
|
+
# directories %w(app lib config test spec features) \
|
|
6
|
+
# .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
|
|
7
|
+
|
|
8
|
+
## Note: if you are using the `directories` clause above and you are not
|
|
9
|
+
## watching the project directory ('.'), then you will want to move
|
|
10
|
+
## the Guardfile to a watched dir and symlink it back, e.g.
|
|
11
|
+
#
|
|
12
|
+
# $ mkdir config
|
|
13
|
+
# $ mv Guardfile config/
|
|
14
|
+
# $ ln -s config/Guardfile .
|
|
15
|
+
#
|
|
16
|
+
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
|
|
17
|
+
|
|
18
|
+
guard :bundler do
|
|
19
|
+
require 'guard/bundler'
|
|
20
|
+
require 'guard/bundler/verify'
|
|
21
|
+
helper = Guard::Bundler::Verify.new
|
|
22
|
+
|
|
23
|
+
files = ['Gemfile']
|
|
24
|
+
files += Dir['*.gemspec'] if files.any? { |f| helper.uses_gemspec?(f) }
|
|
25
|
+
|
|
26
|
+
# Assume files are symlinked from somewhere
|
|
27
|
+
files.each { |file| watch(helper.real_path(file)) }
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Note: The cmd option is now required due to the increasing number of ways
|
|
31
|
+
# rspec may be run, below are examples of the most common uses.
|
|
32
|
+
# * bundler: 'bundle exec rspec'
|
|
33
|
+
# * bundler binstubs: 'bin/rspec'
|
|
34
|
+
# * spring: 'bin/rspec' (This will use spring if running and you have
|
|
35
|
+
# installed the spring binstubs per the docs)
|
|
36
|
+
# * zeus: 'zeus rspec' (requires the server to be started separately)
|
|
37
|
+
# * 'just' rspec: 'rspec'
|
|
38
|
+
|
|
39
|
+
guard :rspec, cmd: "bundle exec rspec" do
|
|
40
|
+
require "guard/rspec/dsl"
|
|
41
|
+
dsl = Guard::RSpec::Dsl.new(self)
|
|
42
|
+
|
|
43
|
+
# Feel free to open issues for suggestions and improvements
|
|
44
|
+
|
|
45
|
+
# RSpec files
|
|
46
|
+
rspec = dsl.rspec
|
|
47
|
+
watch(rspec.spec_helper) { rspec.spec_dir }
|
|
48
|
+
watch(rspec.spec_support) { rspec.spec_dir }
|
|
49
|
+
watch(rspec.spec_files)
|
|
50
|
+
|
|
51
|
+
# Ruby files
|
|
52
|
+
ruby = dsl.ruby
|
|
53
|
+
dsl.watch_spec_files_for(ruby.lib_files)
|
|
54
|
+
|
|
55
|
+
# Rails files
|
|
56
|
+
rails = dsl.rails(view_extensions: %w(erb haml slim))
|
|
57
|
+
dsl.watch_spec_files_for(rails.app_files)
|
|
58
|
+
dsl.watch_spec_files_for(rails.views)
|
|
59
|
+
|
|
60
|
+
watch(rails.controllers) do |m|
|
|
61
|
+
[
|
|
62
|
+
rspec.spec.("routing/#{m[1]}_routing"),
|
|
63
|
+
rspec.spec.("controllers/#{m[1]}_controller"),
|
|
64
|
+
rspec.spec.("acceptance/#{m[1]}")
|
|
65
|
+
]
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Rails config changes
|
|
69
|
+
watch(rails.spec_helper) { rspec.spec_dir }
|
|
70
|
+
watch(rails.routes) { "#{rspec.spec_dir}/routing" }
|
|
71
|
+
watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
|
|
72
|
+
|
|
73
|
+
# Capybara features specs
|
|
74
|
+
watch(rails.view_dirs) { |m| rspec.spec.("features/#{m[1]}") }
|
|
75
|
+
watch(rails.layouts) { |m| rspec.spec.("features/#{m[1]}") }
|
|
76
|
+
|
|
77
|
+
# Turnip features and steps
|
|
78
|
+
watch(%r{^spec/acceptance/(.+)\.feature$})
|
|
79
|
+
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
|
|
80
|
+
Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
|
|
81
|
+
end
|
|
82
|
+
end
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 alu0100763379
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Referencia
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/referencia`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'referencia'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install referencia
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
1. Fork it ( https://github.com/[my-github-username]/referencia/fork )
|
|
36
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
+
5. Create a new Pull Request
|
|
40
|
+
|
|
41
|
+
#Travis
|
|
42
|
+
[](https://travis-ci.org/alu0100763379/LPPP9)
|
|
43
|
+
|
|
44
|
+
#Coveralls
|
|
45
|
+
[](https://coveralls.io/github/alu0100763379/LPPpractica10?branch=master)
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "referencia"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/lib/referencia.rb
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
class Bibliografia
|
|
2
|
+
|
|
3
|
+
include Comparable
|
|
4
|
+
|
|
5
|
+
attr_accessor :autor, :titulo, :fecha
|
|
6
|
+
|
|
7
|
+
def initialize(titulo, &bloque)
|
|
8
|
+
self.titulo = titulo
|
|
9
|
+
instance_eval &bloque if block_given?
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def <=> (other)
|
|
13
|
+
if @autor == other.autor
|
|
14
|
+
@titulo <=> other.titulo
|
|
15
|
+
else
|
|
16
|
+
@autor <=> other.autor
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def fecha_publicacion(fecha)
|
|
21
|
+
@fecha = fecha
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def autores(autor)
|
|
25
|
+
@autor = []
|
|
26
|
+
@autor << autor
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class Libro < Bibliografia
|
|
32
|
+
|
|
33
|
+
attr_accessor :serie, :editorial, :edicion, :isbn
|
|
34
|
+
|
|
35
|
+
def initialize (titulo, &bloque)
|
|
36
|
+
super(titulo)
|
|
37
|
+
instance_eval &bloque if block_given?
|
|
38
|
+
end
|
|
39
|
+
def nombre_serie(serie)
|
|
40
|
+
@serie = serie
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def nombre_editorial(editorial)
|
|
44
|
+
@editorial = editorial
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def numero_edicion(edicion)
|
|
48
|
+
@edicion = edicion
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def identificador(isbn)
|
|
52
|
+
@isbn = isbn
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
class Revista < Bibliografia
|
|
57
|
+
|
|
58
|
+
attr_accessor :issn
|
|
59
|
+
|
|
60
|
+
def initialize (titulo, &bloque)
|
|
61
|
+
super(titulo)
|
|
62
|
+
instance_eval &bloque if block_given?
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def identificador(issn)
|
|
66
|
+
@issn = issn
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
class Electronico < Bibliografia
|
|
71
|
+
|
|
72
|
+
attr_accessor :url
|
|
73
|
+
|
|
74
|
+
def initialize (titulo, &bloque)
|
|
75
|
+
super(titulo)
|
|
76
|
+
instance_eval &bloque if block_given?
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def direccion_web(url)
|
|
80
|
+
@url = url
|
|
81
|
+
end
|
|
82
|
+
end
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#Clase para representar la Lista
|
|
2
|
+
|
|
3
|
+
Nodo = Struct.new(:value, :next_node, :prev_node)
|
|
4
|
+
|
|
5
|
+
class Lista
|
|
6
|
+
|
|
7
|
+
include Enumerable
|
|
8
|
+
|
|
9
|
+
attr_accessor :head, :value, :next_node, :tail, :prev_node
|
|
10
|
+
|
|
11
|
+
def initialize
|
|
12
|
+
@head = Nodo.new(nil)
|
|
13
|
+
@head = nil
|
|
14
|
+
@tail = Nodo.new(nil)
|
|
15
|
+
@tail = nil
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def add_principio(nodo)
|
|
19
|
+
aux = Nodo.new(nodo, nil, nil)
|
|
20
|
+
if (@head == nil && @tail == nil)
|
|
21
|
+
@head = aux
|
|
22
|
+
@tail = aux
|
|
23
|
+
else
|
|
24
|
+
aux.next_node = @head
|
|
25
|
+
@head.prev_node = aux
|
|
26
|
+
@head = aux
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def borrar_principio
|
|
31
|
+
@head = @head.next_node
|
|
32
|
+
@head.prev_node = nil
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def borrar_final
|
|
36
|
+
@tail = @tail.prev_node
|
|
37
|
+
@tail.next_node = nil
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def add_final(nodo)
|
|
41
|
+
aux = Nodo.new(nodo, nil, nil)
|
|
42
|
+
aux.prev_node = @tail
|
|
43
|
+
@tail.next_node = aux
|
|
44
|
+
@tail = aux
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def each
|
|
48
|
+
i = @head
|
|
49
|
+
while (i != nil)
|
|
50
|
+
yield i.value
|
|
51
|
+
i = i.next_node
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def add_muchos(nodo)
|
|
56
|
+
nodo.each do |num|
|
|
57
|
+
self.add_principio(num)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
end
|
data/referencia.gemspec
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'referencia/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "referencia"
|
|
8
|
+
spec.version = Referencia::VERSION
|
|
9
|
+
spec.authors = ["alu0100763379"]
|
|
10
|
+
spec.email = ["alu0100@ull.edu.es"]
|
|
11
|
+
|
|
12
|
+
if spec.respond_to?(:metadata)
|
|
13
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
#spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
|
|
17
|
+
#spec.description = %q{TODO: Write a longer description or delete this line.}
|
|
18
|
+
spec.summary = "Short Summary"
|
|
19
|
+
spec.homepage = "http://rubygems.org/gems/prct11"
|
|
20
|
+
spec.license = "MIT"
|
|
21
|
+
|
|
22
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
23
|
+
spec.bindir = "exe"
|
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
25
|
+
spec.require_paths = ["lib"]
|
|
26
|
+
|
|
27
|
+
spec.add_development_dependency "bundler"
|
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
29
|
+
spec.add_development_dependency "rspec", "~> 2.11"
|
|
30
|
+
spec.add_development_dependency "guard"
|
|
31
|
+
spec.add_development_dependency "guard-rspec"
|
|
32
|
+
spec.add_development_dependency "guard-bundler"
|
|
33
|
+
spec.add_development_dependency "coveralls"
|
|
34
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: referencia
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- alu0100763379
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-12-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.11'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.11'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: guard
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: guard-rspec
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: guard-bundler
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: coveralls
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
description:
|
|
112
|
+
email:
|
|
113
|
+
- alu0100@ull.edu.es
|
|
114
|
+
executables: []
|
|
115
|
+
extensions: []
|
|
116
|
+
extra_rdoc_files: []
|
|
117
|
+
files:
|
|
118
|
+
- ".coveralls.yml"
|
|
119
|
+
- ".gitignore"
|
|
120
|
+
- ".travis.yml"
|
|
121
|
+
- CODE_OF_CONDUCT.md
|
|
122
|
+
- Gemfile
|
|
123
|
+
- Guardfile
|
|
124
|
+
- LICENSE.txt
|
|
125
|
+
- README.md
|
|
126
|
+
- Rakefile
|
|
127
|
+
- bin/console
|
|
128
|
+
- bin/setup
|
|
129
|
+
- doc/Bibliografia.html
|
|
130
|
+
- doc/CODE_OF_CONDUCT_md.html
|
|
131
|
+
- doc/Electronico.html
|
|
132
|
+
- doc/Gemfile.html
|
|
133
|
+
- doc/Guardfile.html
|
|
134
|
+
- doc/LICENSE_txt.html
|
|
135
|
+
- doc/Libro.html
|
|
136
|
+
- doc/Lista.html
|
|
137
|
+
- doc/Object.html
|
|
138
|
+
- doc/README_md.html
|
|
139
|
+
- doc/Rakefile.html
|
|
140
|
+
- doc/Referencia.html
|
|
141
|
+
- doc/Revista.html
|
|
142
|
+
- doc/bin/setup.html
|
|
143
|
+
- doc/created.rid
|
|
144
|
+
- doc/css/fonts.css
|
|
145
|
+
- doc/css/rdoc.css
|
|
146
|
+
- doc/fonts/Lato-Light.ttf
|
|
147
|
+
- doc/fonts/Lato-LightItalic.ttf
|
|
148
|
+
- doc/fonts/Lato-Regular.ttf
|
|
149
|
+
- doc/fonts/Lato-RegularItalic.ttf
|
|
150
|
+
- doc/fonts/SourceCodePro-Bold.ttf
|
|
151
|
+
- doc/fonts/SourceCodePro-Regular.ttf
|
|
152
|
+
- doc/images/add.png
|
|
153
|
+
- doc/images/arrow_up.png
|
|
154
|
+
- doc/images/brick.png
|
|
155
|
+
- doc/images/brick_link.png
|
|
156
|
+
- doc/images/bug.png
|
|
157
|
+
- doc/images/bullet_black.png
|
|
158
|
+
- doc/images/bullet_toggle_minus.png
|
|
159
|
+
- doc/images/bullet_toggle_plus.png
|
|
160
|
+
- doc/images/date.png
|
|
161
|
+
- doc/images/delete.png
|
|
162
|
+
- doc/images/find.png
|
|
163
|
+
- doc/images/loadingAnimation.gif
|
|
164
|
+
- doc/images/macFFBgHack.png
|
|
165
|
+
- doc/images/package.png
|
|
166
|
+
- doc/images/page_green.png
|
|
167
|
+
- doc/images/page_white_text.png
|
|
168
|
+
- doc/images/page_white_width.png
|
|
169
|
+
- doc/images/plugin.png
|
|
170
|
+
- doc/images/ruby.png
|
|
171
|
+
- doc/images/tag_blue.png
|
|
172
|
+
- doc/images/tag_green.png
|
|
173
|
+
- doc/images/transparent.png
|
|
174
|
+
- doc/images/wrench.png
|
|
175
|
+
- doc/images/wrench_orange.png
|
|
176
|
+
- doc/images/zoom.png
|
|
177
|
+
- doc/index.html
|
|
178
|
+
- doc/js/darkfish.js
|
|
179
|
+
- doc/js/jquery.js
|
|
180
|
+
- doc/js/navigation.js
|
|
181
|
+
- doc/js/navigation.js.gz
|
|
182
|
+
- doc/js/search.js
|
|
183
|
+
- doc/js/search_index.js
|
|
184
|
+
- doc/js/search_index.js.gz
|
|
185
|
+
- doc/js/searcher.js
|
|
186
|
+
- doc/js/searcher.js.gz
|
|
187
|
+
- doc/referencia_gemspec.html
|
|
188
|
+
- doc/table_of_contents.html
|
|
189
|
+
- lib/referencia.rb
|
|
190
|
+
- lib/referencia/clase.rb
|
|
191
|
+
- lib/referencia/lista.rb
|
|
192
|
+
- lib/referencia/version.rb
|
|
193
|
+
- referencia.gemspec
|
|
194
|
+
homepage: http://rubygems.org/gems/prct11
|
|
195
|
+
licenses:
|
|
196
|
+
- MIT
|
|
197
|
+
metadata:
|
|
198
|
+
allowed_push_host: https://rubygems.org
|
|
199
|
+
post_install_message:
|
|
200
|
+
rdoc_options: []
|
|
201
|
+
require_paths:
|
|
202
|
+
- lib
|
|
203
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
204
|
+
requirements:
|
|
205
|
+
- - ">="
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '0'
|
|
208
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
|
+
requirements:
|
|
210
|
+
- - ">="
|
|
211
|
+
- !ruby/object:Gem::Version
|
|
212
|
+
version: '0'
|
|
213
|
+
requirements: []
|
|
214
|
+
rubyforge_project:
|
|
215
|
+
rubygems_version: 2.4.6
|
|
216
|
+
signing_key:
|
|
217
|
+
specification_version: 4
|
|
218
|
+
summary: Short Summary
|
|
219
|
+
test_files: []
|
|
220
|
+
has_rdoc:
|