biblio_gem 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f44acfeda842966b4cf524292400f19acda201c2
4
+ data.tar.gz: 1d70dc18e62eef3addc99307829694ba5d67b810
5
+ SHA512:
6
+ metadata.gz: 5aaf97d80ed1aac50ba80c1a81e92e2c3e5cc954841b8cb4cf79fa11d69873566fe58985681642e1c6ea4208de3d433eea57092e1837c78670df298ea358a947
7
+ data.tar.gz: 8da9b8584a70e254d5bc1721aa48e0edd40110c779e2b46138c2298fec59656cfd5ea4cc0fa46db50eab79512cfb63d74f805d3168aefd26da54a25c379513e9
@@ -0,0 +1,10 @@
1
+ *~
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+ - 2.2.0
5
+ - 1.9.3 - jruby-19mode # JRuby in 1.9 mode
6
+ - rbx-19mode
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in biblio_gem.gemspec
4
+ gemspec
@@ -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
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 ASP
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.
@@ -0,0 +1,39 @@
1
+ #Lenguajes y Paradigmas de Programación
2
+ ##Práctica7: Programación Orientada a objetos
3
+
4
+ ### Alumno
5
+ * David F. Redondo Durand.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'biblio_gem'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install biblio_gem
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]/biblio_gem/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
@@ -0,0 +1,19 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ task :default => :spec
4
+
5
+ desc "Ejecutar las espectativas de la gema BiblioGem"
6
+ task :spec do
7
+ sh "bundle exec rspec spec/biblio_gem_spec.rb"
8
+ sh "bundle exec rspec spec/node_spec.rb"
9
+ sh "bundle exec rspec spec/list_spec.rb"
10
+ sh "bundle exec rspec spec/book_spec.rb"
11
+ sh "bundle exec rspec spec/ebook_spec.rb"
12
+ sh "bundle exec rspec spec/magazine_spec.rb"
13
+ sh "bundle exec rspec spec/dslbibliography_spec.rb"
14
+ end
15
+
16
+ desc "Ejecutar las espectativas de la clase DSLBibliography"
17
+ task :prct11 do
18
+ sh "bundle exec rspec spec/dslbibliography_spec.rb"
19
+ end
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'biblio_gem/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "biblio_gem"
8
+ spec.version = BiblioGem::VERSION
9
+ spec.authors = ["David Redondo Durand"]
10
+ spec.email = ["alu0100851700@ull.edu.es"]
11
+
12
+
13
+ spec.summary = %q{Gema Bibliográfica.}
14
+ spec.description = %q{Gema que permite el almacenamiento de bibliografía.}
15
+ spec.homepage = ""
16
+ spec.license = "MIT"
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.8"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 2.11"
26
+ spec.add_development_dependency "guard"
27
+ spec.add_development_dependency "guard-rspec"
28
+ spec.add_development_dependency "guard-bundler"
29
+
30
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "biblio_gem"
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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -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/)
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in install.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 alu0100851700
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.
@@ -0,0 +1,39 @@
1
+ # Install
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/install`. 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 'install'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install install
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]/install/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
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "install"
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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'install/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "install"
8
+ spec.version = Install::VERSION
9
+ spec.authors = ["alu0100851700"]
10
+ spec.email = ["alu0100851700@ull.edu.es"]
11
+
12
+ if spec.respond_to?(:metadata)
13
+ spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
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.homepage = "TODO: Put your gem's website or public repo URL here."
19
+ spec.license = "MIT"
20
+
21
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.8"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ end
@@ -0,0 +1,5 @@
1
+ require "install/version"
2
+
3
+ module Install
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Install
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,12 @@
1
+ require "biblio_gem/version"
2
+ require "biblio_gem/bibliography"
3
+ require "biblio_gem/list"
4
+ require "biblio_gem/node"
5
+ require "biblio_gem/book"
6
+ require "biblio_gem/ebook"
7
+ require "biblio_gem/magazine"
8
+ require "biblio_gem/dslbibliography"
9
+
10
+ module BiblioGem
11
+ # Your code goes here...
12
+ end
@@ -0,0 +1,39 @@
1
+ module BiblioGem
2
+ class Bibliography
3
+ attr_accessor :autor, :titulo, :fecha, :isbn, :paginas
4
+
5
+ include Comparable
6
+
7
+ def initialize (args)
8
+ @paginas, @autor, @titulo, @fecha, @isbn =nil
9
+ @autor = args[:autor]
10
+ @titulo = args[:titulo]
11
+ @fecha = args[:fecha]
12
+ @isbn = args[:isbn]
13
+ @paginas = args[:paginas]
14
+ end
15
+
16
+ def to_s
17
+ libro = ""
18
+ if @autor.is_a? Array
19
+ libro+="Autor/es: #{@autor.join(", ")}\n"
20
+ else
21
+ libro+="Autor/es: #{@autor}\n"
22
+ end
23
+
24
+ libro+=" Titulo: #{@titulo}\n Fecha: #{@fecha}\n"
25
+
26
+ if @isbn.is_a? Array
27
+ libro+=" ISBN: #{@isbn.join(", ")}\n"
28
+ else
29
+ libro+=" ISBN: #{@isbn}\n"
30
+ end
31
+ libro
32
+ end
33
+
34
+ def <=> (other)
35
+ return (self.paginas <=> other.paginas)
36
+ end
37
+
38
+ end
39
+ end
@@ -0,0 +1,7 @@
1
+ module BiblioGem
2
+ class Book < Bibliography
3
+ def to_s
4
+ "Libro\n"+super
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,20 @@
1
+ module BiblioGem
2
+ class DSLBibliography < Bibliography
3
+ attr_accessor :copyright, :disponibilidad, :formato #:autor, :titulo, :fecha, :isbn, :paginas
4
+
5
+ def initialize(&block)
6
+ instance_eval &block
7
+ end
8
+
9
+ def title(name, options = {})
10
+ @titulo = name
11
+ @autor = options[:by].split(/\, | and /) if options[:by]
12
+ @paginas = options[:pages] if options[:pages]
13
+ @isbn = options[:isbn] if options[:isbn]
14
+ @copyright = options[:copyright] if options[:copyright]
15
+ @formato = options[:format] if options[:format]
16
+ @disponibilidad = options[:availability] if options[:availability]
17
+ @fecha = options[:date] if options[:date]
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,7 @@
1
+ module BiblioGem
2
+ class EBook < Bibliography
3
+ def to_s
4
+ "Libro Electronico\n"+super
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,62 @@
1
+ module BiblioGem
2
+ class List
3
+ attr_accessor :head, :size, :tail
4
+
5
+ include Enumerable
6
+
7
+ def initialize(*args)
8
+ @head = @tail = nil
9
+ @size = 0
10
+ self.push_back(*args) if(args!=nil)
11
+
12
+ end
13
+
14
+ def push_back(*args)
15
+ args.each do |value|
16
+ if(@tail==nil) #La cola esta vacia
17
+ @tail = @head = Node.new(:value => value)
18
+ else
19
+ @tail.next = Node.new(:value => value)
20
+ @tail = @tail.next
21
+ end
22
+ @size += 1
23
+ end
24
+ end
25
+
26
+ def push_front(*args)
27
+ args.each do |value|
28
+ if(@head==nil) #La cola esta vacia
29
+ @head = @tail = Node.new(:value => value)
30
+ else
31
+ @head.prev = Node.new(:value => value)
32
+ @head = @head.prev
33
+ end
34
+ @size += 1
35
+ end
36
+ end
37
+
38
+ def pop_front
39
+ return false if @size==0
40
+ pos = @head
41
+ @head = pos.next
42
+ @size -= 1
43
+ pos.value
44
+ end
45
+
46
+ def pop_back
47
+ return false if @size==0
48
+ pos = @tail
49
+ @tail = pos.prev
50
+ @size -= 1
51
+ pos.value
52
+ end
53
+
54
+ def each
55
+ aux = @head
56
+ while aux!=nil
57
+ yield aux.value
58
+ aux = aux.next
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,7 @@
1
+ module BiblioGem
2
+ class Magazine < Bibliography
3
+ def to_s
4
+ "Revista\n"+super
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,16 @@
1
+ module BiblioGem
2
+ Node = Struct.new(:value, :next) do
3
+
4
+ attr_accessor :value, :next, :prev
5
+
6
+ def initialize(args)
7
+ @value = args[:value]
8
+ @next = args[:next]
9
+ end
10
+
11
+ def to_s
12
+ @value.to_s
13
+ end
14
+
15
+ end
16
+ end
@@ -0,0 +1,3 @@
1
+ module BiblioGem
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: biblio_gem
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - David Redondo Durand
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-21 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: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
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
+ description: Gema que permite el almacenamiento de bibliografía.
98
+ email:
99
+ - alu0100851700@ull.edu.es
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".travis.yml"
106
+ - Gemfile
107
+ - Guardfile
108
+ - LICENSE.txt
109
+ - README.md
110
+ - Rakefile
111
+ - biblio_gem.gemspec
112
+ - bin/console
113
+ - bin/setup
114
+ - install/.gitignore
115
+ - install/CODE_OF_CONDUCT.md
116
+ - install/Gemfile
117
+ - install/LICENSE.txt
118
+ - install/README.md
119
+ - install/Rakefile
120
+ - install/bin/console
121
+ - install/bin/setup
122
+ - install/install.gemspec
123
+ - install/lib/install.rb
124
+ - install/lib/install/version.rb
125
+ - lib/biblio_gem.rb
126
+ - lib/biblio_gem/bibliography.rb
127
+ - lib/biblio_gem/book.rb
128
+ - lib/biblio_gem/dslbibliography.rb
129
+ - lib/biblio_gem/ebook.rb
130
+ - lib/biblio_gem/list.rb
131
+ - lib/biblio_gem/magazine.rb
132
+ - lib/biblio_gem/node.rb
133
+ - lib/biblio_gem/version.rb
134
+ homepage: ''
135
+ licenses:
136
+ - MIT
137
+ metadata: {}
138
+ post_install_message:
139
+ rdoc_options: []
140
+ require_paths:
141
+ - lib
142
+ required_ruby_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ required_rubygems_version: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ requirements: []
153
+ rubyforge_project:
154
+ rubygems_version: 2.4.6
155
+ signing_key:
156
+ specification_version: 4
157
+ summary: Gema Bibliográfica.
158
+ test_files: []
159
+ has_rdoc: