menu_alu0100836059 1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e8ddfb675f1e47e43570b858b1f9dadb64594405
4
+ data.tar.gz: 626b982be7df3feff4d8445ac1edbee8dfa569ad
5
+ SHA512:
6
+ metadata.gz: 3eccebc49d38fee0bcad66906639da6f37728bd2e5653015e352accf2c502d1808186af99342a34cb868467cc646b10321e38b3739bd3fcbb43d816040e36fb6
7
+ data.tar.gz: f10a28ae7e7b0bdc03c6893abd694c6f59f17979c6f2b8007e5499a5413715ac1596a8b3fb606301a4353e39be7acae7eabee0515fd2e25b747e6cab0c2ef0a7
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in menu_dietetico.gemspec
4
+ gemspec
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.call("routing/#{m[1]}_routing"),
63
+ rspec.spec.call("controllers/#{m[1]}_controller"),
64
+ rspec.spec.call("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.call("features/#{m[1]}") }
75
+ watch(rails.layouts) { |m| rspec.spec.call("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/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # MenuDietetico
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/menu_dietetico`. 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 'menu_dietetico'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install menu_dietetico
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 `rake spec` to run the tests. You can also 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`, which will 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
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/menu_dietetico.
36
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "menu_dietetico"
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,140 @@
1
+ require "menu_dietetico/version"
2
+
3
+ module Lista
4
+
5
+ Node = Struct.new(:previous, :value, :next)
6
+
7
+ class Lista_doble
8
+
9
+ attr_accessor :head, :num_nodos
10
+
11
+ # Módulo Enumerable
12
+ include Enumerable
13
+
14
+ def initialize
15
+ @head = @tail = nil
16
+ @num_nodos = 0
17
+ end
18
+
19
+ def get_num_nodos
20
+ @num_nodos
21
+ end
22
+
23
+ def get_cabeza
24
+ @head
25
+ end
26
+
27
+ def get_cola
28
+ @tail
29
+ end
30
+
31
+
32
+ #################################################
33
+
34
+ # # :no_required
35
+ # # Esperamos val como un numero variable de nodos
36
+ def insert_final(*val)
37
+
38
+ val.each do |nuevo_nodo|
39
+
40
+ if @tail != nil
41
+ @tail.next = nuevo_nodo
42
+ nuevo_nodo.previous = @tail
43
+ @tail = nuevo_nodo
44
+ else
45
+ @head = @tail = nuevo_nodo
46
+ end
47
+ @num_nodos += 1
48
+ end
49
+ end
50
+
51
+ # Esperamos val como un numero variable de nodos
52
+ def insert_beginning(*val)
53
+
54
+ val.each do |nuevo_nodo|
55
+
56
+ if @head != nil
57
+
58
+ @head.previous = nuevo_nodo
59
+ nuevo_nodo.next = @head
60
+ @head = nuevo_nodo
61
+ else
62
+ @head = nuevo_nodo
63
+ end
64
+ @num_nodos += 1
65
+
66
+ end
67
+ end
68
+ ###################################################
69
+
70
+ def extract_first
71
+
72
+ if @head == nil
73
+ puts "\nLista vacía, nada que extraer\n"
74
+ else
75
+ aux = @head
76
+ @head = aux.next
77
+ return aux
78
+ end
79
+ @num_nodos -= 1
80
+ end
81
+
82
+ # :no_required
83
+ # def extract_last
84
+
85
+ # if @head.value == nil
86
+ # puts "Lista vacía, nada que extraer"
87
+ # else
88
+ # aux = @head
89
+ # while aux.next.next != nil
90
+ # aux = aux.next
91
+ # end
92
+ # aux_2 = aux.next
93
+ # aux.next = nil
94
+ # @num_nodos -= 1
95
+ # return aux_2
96
+ # end
97
+ # end
98
+
99
+ # Método de acceso a un elemento dependiendo del índice
100
+ def at(indice)
101
+ cont = 0
102
+ aux = @head
103
+ while cont < indice do
104
+ aux = aux.next
105
+ cont += 1
106
+ end
107
+ return aux
108
+ end
109
+
110
+ def reset
111
+ @head = @tail = nil
112
+ @num_nodos = 0
113
+ end
114
+
115
+ # Para :Enumerable
116
+ def each
117
+ aux = @head
118
+ while aux != nil
119
+ yield aux.value
120
+ aux = aux.next
121
+ end
122
+ end
123
+
124
+
125
+ def to_s
126
+ aux = @head
127
+ if aux == nil
128
+ puts "Lista vacía"
129
+ else
130
+ while aux.next != nil
131
+ puts aux.value
132
+ puts
133
+ aux = aux.next
134
+ end
135
+ puts aux.value
136
+ end
137
+ end
138
+ end # end Lista_doble class
139
+
140
+ end #end module
@@ -0,0 +1,124 @@
1
+ class Menu_DSL
2
+ attr_accessor :titulo, :ingestas, :plato, :porcentajes, :etiqueta
3
+ attr_accessor :title, :porcentaje, :platos, :porcion, :gramos, :vct, :p_proteinas, :p_grasas, :p_hidratos
4
+
5
+ # def initialize(etiqueta, &block)
6
+ # @etiqueta = etiqueta
7
+ # @platos = []
8
+ # @porcentajes =[[]]
9
+ # (block.arity < 1 ? (instance_eval block) : block.call(self)) if block_given?
10
+ # end
11
+
12
+
13
+ def initialize(etiqueta, &block)
14
+ self.etiqueta = etiqueta
15
+ # self.titulo = titulo
16
+ self.ingestas = []
17
+ self.platos=[]
18
+ self.porcentaje = []
19
+
20
+ if block_given?
21
+ if block.arity == 1
22
+ yield self
23
+ else
24
+ instance_eval(&block)
25
+ end
26
+ end
27
+ end
28
+
29
+ def titulo(titulo=nil)
30
+ titulo.nil? ? @titulo : @titulo = titulo
31
+ end
32
+
33
+
34
+
35
+
36
+
37
+ def ingesta(options = {})
38
+ aux = ""
39
+ aux << " mínima: #{options[:min]}\t" if options[:min]
40
+ aux << " máxima: #{options[:max]}" if options[:max]
41
+
42
+ ingestas << "#{aux}"
43
+
44
+ "#{ingestas}"
45
+ end
46
+
47
+ def plato(options = {})
48
+ aux = ""
49
+ aux << "\t\tDescripción: #{options[:descripcion]}\n" if options[:descripcion]
50
+ aux << "\t\tPorción: #{options[:porcion]}\n" if options[:porcion]
51
+ aux << "\t\tGramos: #{options[:gramos]}\n\n" if options[:gramos]
52
+
53
+ platos << "#{aux}"
54
+
55
+ "#{platos}"
56
+ end
57
+
58
+ def get_porcentaje
59
+ porcentajes = ""
60
+ porcentajes << @porcentaje.join(', ')
61
+ porcentajes
62
+ end
63
+
64
+
65
+
66
+ def get_platos
67
+ l_platos = ""
68
+ l_platos << @platos.join(', ')
69
+
70
+ l_platos
71
+ end
72
+
73
+ def porcentajes(options={})
74
+ aux = ""
75
+ aux << "\t\tV.C.T: #{options[:vct]}\n" if options[:vct]
76
+ aux << "\t\tProteínas: #{options[:proteinas]}\n" if options[:proteinas]
77
+ aux << "\t\tGrasas: #{options[:grasas]}\n" if options[:grasas]
78
+ aux << "\t\tHidratos: #{options[:hidratos]}\n\n" if options[:hidratos]
79
+
80
+ porcentaje << "#{aux}"
81
+
82
+ "#{porcentaje}"
83
+ end
84
+
85
+ def to_s
86
+ salida = ""
87
+ salida << "\nTítulo\t#{titulo}"
88
+ salida << "\n#{'=' * (titulo.size+8)}\n\n"
89
+ salida << "\nIngesta:\t#{ingestas.join(', ')}"
90
+
91
+ salida << "\nPlatos:\n#{platos.join}"
92
+
93
+ salida << "\nPorcentajes:\n#{porcentaje.join}"
94
+
95
+
96
+ salida
97
+ end
98
+
99
+
100
+ end
101
+
102
+ menu = Menu_DSL.new("Mediodía") do
103
+ titulo "Almuerzo"
104
+ ingesta :min => 30, :max => 50
105
+ plato :descripcion => "Macarrones con salsa de tomate y queso parmesano",
106
+ :porcion => "1 1/2 cucharón",
107
+ :gramos => "200"
108
+
109
+ plato :descripcion => "Escalope de ternera",
110
+ :porcion => "1 bistec mediano",
111
+ :gramos => "100"
112
+
113
+ plato :descripcion => "Ensalada básica con zanahoria rallada",
114
+ :porcion => "guarnición",
115
+ :gramos => "120"
116
+
117
+ plato :descripcion => "Mandarina", :porcion => "1 grande", :gramos => "180"
118
+
119
+ plato :descripcion => "Pan de trigo integral", :porcion => "1 rodaja", :gramos => "20"
120
+ porcentajes :vct => 785.9, :proteinas => 19, :grasas => 34, :hidratos => 47
121
+ end
122
+
123
+
124
+ puts menu
@@ -0,0 +1,111 @@
1
+ # encoding: UTF-8
2
+ class Menu
3
+ attr_accessor :title, :porcentaje, :platos, :porcion, :gramos, :vct, :p_proteinas, :p_grasas, :p_hidratos
4
+
5
+ # Modulo comparable
6
+ include Comparable
7
+
8
+ def initialize(title, porcentaje,platos,porcion,gramos,vct,p_proteinas,p_grasas,p_hidratos)
9
+ @title=title
10
+ @porcentaje = porcentaje
11
+ @platos = platos
12
+ @porcion=porcion
13
+ @gramos = gramos
14
+ @vct = vct
15
+ @p_proteinas = p_proteinas
16
+ @p_grasas = p_grasas
17
+ @p_hidratos = p_hidratos
18
+ end
19
+
20
+
21
+ def get_platos
22
+ @conjunto_platos = ""
23
+ @platos.each do |p|
24
+ @conjunto_platos<<"- "<<"#{p}"<<"\n"
25
+ end
26
+
27
+ "#{@conjunto_platos}"
28
+ end
29
+
30
+ def get_nombre_menu
31
+ @title
32
+ end
33
+
34
+ def porcentaje
35
+ @porcentaje
36
+ end
37
+
38
+ def get_plato(num_plato)
39
+ "- #{@platos[num_plato]}"
40
+ end
41
+
42
+ def get_porcentaje
43
+ @porcentaje
44
+ end
45
+
46
+ def get_vct
47
+ @vct
48
+ end
49
+
50
+ def get_p_proteinas
51
+ @p_proteinas
52
+ end
53
+
54
+ def get_p_grasas
55
+ @p_grasas
56
+ end
57
+
58
+ def get_p_hidratos
59
+ @p_hidratos
60
+ end
61
+
62
+ def to_s
63
+ @platos_final = ""
64
+ total = @platos.length
65
+ cont = 0
66
+ while cont < total do
67
+ @platos_final<<"- "<<@platos[cont]<<", "<<@porcion[cont]<<", "<<@gramos[cont]<<"\n"
68
+ cont += 1
69
+ end
70
+
71
+ "#{@title} (#{@porcentaje})\n#{@platos_final}"+
72
+ "V.C.T. | %\t#{@vct} kcal | #{@p_proteinas}% - #{@p_grasas}"+
73
+ "% - #{@p_hidratos}%"
74
+ end
75
+
76
+ # Para :Comparable
77
+ def <=> otro_menu
78
+ self.vct <=> otro_menu.vct
79
+ end
80
+
81
+ end
82
+
83
+
84
+ class Menu_por_alimentos < Menu
85
+
86
+ attr_accessor :grupo_alimentos
87
+
88
+ def initialize(title, porcentaje,platos,porcion,gramos,vct,p_proteinas,p_grasas,p_hidratos,grupo_alimentos)
89
+ super(title, porcentaje,platos,porcion,gramos,vct,p_proteinas,p_grasas,p_hidratos)
90
+ @grupo_alimentos = grupo_alimentos
91
+ end
92
+
93
+ def to_s
94
+ "Menús pertenecientes a las categorías de alimentos: #{@grupo_alimentos}:\n"+super.to_s
95
+ end
96
+ end
97
+
98
+
99
+ class Menu_por_edad < Menu
100
+ attr_accessor :edad
101
+
102
+ def initialize(title, porcentaje,platos,porcion,gramos,vct,p_proteinas,p_grasas,p_hidratos,edad)
103
+ super(title, porcentaje,platos,porcion,gramos,vct,p_proteinas,p_grasas,p_hidratos)
104
+ @edad = edad
105
+ end
106
+
107
+ def to_s
108
+ "Menú para edades de #{@edad}:\n"+super.to_s
109
+ end
110
+
111
+ end
@@ -0,0 +1,3 @@
1
+ module Lista
2
+ VERSION = "1.1.0"
3
+ end
@@ -0,0 +1,38 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'menu_dietetico/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "menu_alu0100836059"
8
+ spec.version = Lista::VERSION
9
+ spec.authors = ["alu0100836059"]
10
+ spec.email = ["alu0100836059@ull.edu.es"]
11
+
12
+ spec.summary = %q{Practica número 8 de LPP}
13
+ spec.description = %q{Practica número 8 de LPP}
14
+ spec.homepage = "https://github.com/ULL-ESIT-LPP-1617/menu-dietetico-alu0100836059.git"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ # if spec.respond_to?(:metadata)
19
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
20
+ # else
21
+ # raise "RubyGems 2.0 or newer is required to protect against " \
22
+ # "public gem pushes."
23
+ # end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
+ f.match(%r{^(test|spec|features)/})
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.13"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+ spec.add_development_dependency "rspec", "~> 3.0"
35
+ spec.add_development_dependency "guard"
36
+ spec.add_development_dependency "guard-rspec"
37
+ spec.add_development_dependency "guard-bundler"
38
+ end
metadata ADDED
@@ -0,0 +1,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: menu_alu0100836059
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0
5
+ platform: ruby
6
+ authors:
7
+ - alu0100836059
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-12-16 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.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
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: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
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: Practica número 8 de LPP
98
+ email:
99
+ - alu0100836059@ull.edu.es
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".travis.yml"
106
+ - Gemfile
107
+ - Guardfile
108
+ - README.md
109
+ - Rakefile
110
+ - bin/console
111
+ - bin/setup
112
+ - lib/lista_doble.rb
113
+ - lib/menu_dietetico/DSL.rb
114
+ - lib/menu_dietetico/menu.rb
115
+ - lib/menu_dietetico/version.rb
116
+ - menu_dietetico.gemspec
117
+ homepage: https://github.com/ULL-ESIT-LPP-1617/menu-dietetico-alu0100836059.git
118
+ licenses: []
119
+ metadata: {}
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubyforge_project:
136
+ rubygems_version: 2.5.1
137
+ signing_key:
138
+ specification_version: 4
139
+ summary: Practica número 8 de LPP
140
+ test_files: []