CapicuaGenGaspar 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/CapicuaGenGaspar.gemspec +60 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +33 -0
- data/LICENSE +165 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Source/cs_sql_entity_interface_feature.rb +96 -0
- data/lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Template/table_interface.erb +49 -0
- data/lib/CapicuaGenGaspar/Business/CSSqlEntity/Source/cs_sql_entity_feature.rb +103 -0
- data/lib/CapicuaGenGaspar/Business/CSSqlEntity/Template/table_entity.erb +51 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Source/cs_header_footer_feature.rb +148 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/footer.erb +37 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/header.erb +43 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE.dll +0 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE80.dll +0 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe +0 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe.config +52 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/stdole.dll +0 -0
- data/lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Source/code_maid_cleaner_feature.rb +162 -0
- data/lib/CapicuaGenGaspar/DataAccess/CSConnectionProvider/Source/cs_db_connection_provider_feature.rb +90 -0
- data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Source/cs_sql_data_access_feature.rb +106 -0
- data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access.erb +154 -0
- data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_exception.erb +36 -0
- data/lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_table.erb +298 -0
- data/lib/CapicuaGenGaspar/Entities/CSEntity/Source/entity_field_schema.rb +100 -0
- data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Source/cs_about_windows_form_feature.rb +85 -0
- data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.designer.erb +211 -0
- data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.erb +127 -0
- data/lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.resx.erb +535 -0
- data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Source/cs_catalog_windows_form_feature.rb +146 -0
- data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.Designer.erb +363 -0
- data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.erb +320 -0
- data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.resx.erb +2407 -0
- data/lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogState.erb +51 -0
- data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Source/cs_mdi_windows_form_feature.rb +93 -0
- data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.Designer.erb +316 -0
- data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.erb +161 -0
- data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.resx.erb +2504 -0
- data/lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MsgboxConsts.erb +31 -0
- data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Source/cs_splash_windows_feature.rb +87 -0
- data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.designer.erb +141 -0
- data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.erb +160 -0
- data/lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.resx.erb +535 -0
- data/lib/CapicuaGenGaspar/Mixins/about_mixin.rb +55 -0
- data/lib/CapicuaGenGaspar/Mixins/catalog_mixin.rb +65 -0
- data/lib/CapicuaGenGaspar/Mixins/cs_app_config_mixin.rb +41 -0
- data/lib/CapicuaGenGaspar/Mixins/cs_db_connection_provider_mixin.rb +67 -0
- data/lib/CapicuaGenGaspar/Mixins/cs_namespace_mixin.rb +53 -0
- data/lib/CapicuaGenGaspar/Mixins/entity_interface_mixin.rb +57 -0
- data/lib/CapicuaGenGaspar/Mixins/entity_mixin.rb +58 -0
- data/lib/CapicuaGenGaspar/Mixins/entity_sql_table_mixin.rb +58 -0
- data/lib/CapicuaGenGaspar/Mixins/main_form_mixin.rb +55 -0
- data/lib/CapicuaGenGaspar/Mixins/splash_mixin.rb +54 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyect/Source/cs_proyect_feature.rb +140 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Source/cs_proyect_rest_ful_feature.rb +82 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/AssemblyInfo.erb +59 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/ExcepcionControlada.erb +38 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Proyect.erb +114 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Soluction.erb +54 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Web.erb +66 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Source/cs_proyect_windows_form_feature.rb +85 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/App.erb +32 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/AssemblyInfo.erb +59 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ControlExcepciones.erb +49 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ExcepcionControlada.erb +40 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Program.erb +46 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Proyect.erb +138 -0
- data/lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Soluction.erb +55 -0
- data/lib/CapicuaGenGaspar/Tools/message_helper.rb +43 -0
- data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Source/cs_rest_ful_catalog_feature.rb +176 -0
- data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/CatalogState.erb +51 -0
- data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.erb +58 -0
- data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.svc.erb +24 -0
- data/lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/ICatalogs.erb +58 -0
- data/lib/CapicuaGenGaspar/gaspar.rb +44 -0
- data/lib/CapicuaGenGaspar/version.rb +3 -0
- metadata +216 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
<%
|
2
|
+
#encoding: UTF-8
|
3
|
+
|
4
|
+
=begin
|
5
|
+
|
6
|
+
CapicuaGen
|
7
|
+
|
8
|
+
CapicuaGen es un software que ayuda a la creación automática de
|
9
|
+
sistemas empresariales a través de la definición y ensamblado de
|
10
|
+
diversos generadores de características.
|
11
|
+
|
12
|
+
El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
|
13
|
+
del 2016.
|
14
|
+
|
15
|
+
Puede modificar y distribuir este software, según le plazca, y usarlo
|
16
|
+
para cualquier fin ya sea comercial, personal, educativo, o de cualquier
|
17
|
+
índole, siempre y cuando incluya este mensaje, y se permita acceso el
|
18
|
+
código fuente.
|
19
|
+
|
20
|
+
Este software es código libre, y se licencia bajo LGPL.
|
21
|
+
|
22
|
+
Para más información consultar http://www.gnu.org/licenses/lgpl.html
|
23
|
+
=end
|
24
|
+
%>using System;
|
25
|
+
using System.Collections.Generic;
|
26
|
+
using System.Linq;
|
27
|
+
using System.Runtime.Serialization;
|
28
|
+
using System.ServiceModel;
|
29
|
+
using System.ServiceModel.Web;
|
30
|
+
using System.Text;
|
31
|
+
|
32
|
+
<%=get_namespaces_text(:business_interfaces)
|
33
|
+
%><%=get_namespaces_text(:business_entities)
|
34
|
+
%><%=get_namespaces_text(:data_access)
|
35
|
+
%>
|
36
|
+
|
37
|
+
|
38
|
+
namespace <%=generation_attributes[:namespace]%>
|
39
|
+
{
|
40
|
+
/// <summary>
|
41
|
+
/// ICatalogs
|
42
|
+
/// </summary>
|
43
|
+
[ServiceContract]
|
44
|
+
public interface <%=template_target.class_name%>
|
45
|
+
{
|
46
|
+
|
47
|
+
<%get_tables do |catalog|%>
|
48
|
+
/// <summary>
|
49
|
+
/// Gets the <%=catalog.name%>.
|
50
|
+
/// </summary>
|
51
|
+
/// <returns></returns>
|
52
|
+
[OperationContract]
|
53
|
+
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, UriTemplate = "<%=catalog.name%>")]
|
54
|
+
<%=catalog.name%>[] Get<%=catalog.name%>();
|
55
|
+
<%end%>
|
56
|
+
|
57
|
+
}
|
58
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
=begin
|
2
|
+
|
3
|
+
CapicuaGen
|
4
|
+
|
5
|
+
CapicuaGen es un software que ayuda a la creación automática de
|
6
|
+
sistemas empresariales a través de la definición y ensamblado de
|
7
|
+
diversos generadores de características.
|
8
|
+
|
9
|
+
El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
|
10
|
+
del 2016.
|
11
|
+
|
12
|
+
Puede modificar y distribuir este software, según le plazca, y usarlo
|
13
|
+
para cualquier fin ya sea comercial, personal, educativo, o de cualquier
|
14
|
+
índole, siempre y cuando incluya este mensaje, y se permita acceso el
|
15
|
+
código fuente.
|
16
|
+
|
17
|
+
Este software es código libre, y se licencia bajo LGPL.
|
18
|
+
|
19
|
+
Para más información consultar http://www.gnu.org/licenses/lgpl.html
|
20
|
+
=end
|
21
|
+
|
22
|
+
=begin
|
23
|
+
Gaspar es un conjunto de generadores de caracteristicas de ejemplo pertenecientes a CapicuaGen
|
24
|
+
que generan un proyecto de Windows
|
25
|
+
=end
|
26
|
+
|
27
|
+
require_relative 'version'
|
28
|
+
require 'CapicuaGenMelchior/melchior'
|
29
|
+
require_relative 'Business/CSSqlEntitityInterface/Source/cs_sql_entity_interface_feature'
|
30
|
+
require_relative 'Business/CSSqlEntity/Source/cs_sql_entity_feature'
|
31
|
+
require_relative 'CodeTransformer/CSHeaderFooter/Source/cs_header_footer_feature'
|
32
|
+
require_relative 'CodeTransformer/CodeMaidCleaner/Source/code_maid_cleaner_feature'
|
33
|
+
require_relative 'DataAccess/CSConnectionProvider/Source/cs_db_connection_provider_feature'
|
34
|
+
require_relative 'DataAccess/CSSqlDataAccess/Source/cs_sql_data_access_feature'
|
35
|
+
require_relative 'Entities/CSEntity/Source/entity_field_schema'
|
36
|
+
require_relative 'GUI/CSAboutWindowsForm/Source/cs_about_windows_form_feature'
|
37
|
+
require_relative 'GUI/CSCatalogWindowsForm/Source/cs_catalog_windows_form_feature'
|
38
|
+
require_relative 'GUI/CSMDIWindowsForm/Source/cs_mdi_windows_form_feature'
|
39
|
+
require_relative 'GUI/CSSplashWindowsForm/Source/cs_splash_windows_feature'
|
40
|
+
require_relative 'Proyect/CSProyect/Source/cs_proyect_feature'
|
41
|
+
require_relative 'Proyect/CSProyectRESTFul/Source/cs_proyect_rest_ful_feature'
|
42
|
+
require_relative 'Proyect/CSProyectWindowsForm/Source/cs_proyect_windows_form_feature'
|
43
|
+
require_relative 'Tools/message_helper'
|
44
|
+
require_relative 'WCFService/CSRESTFulCatalog/Source/cs_rest_ful_catalog_feature'
|
metadata
ADDED
@@ -0,0 +1,216 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: CapicuaGenGaspar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- José Luis Bautista Martín
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-04-15 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.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
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: CapicuaGen
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.0'
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 0.0.1
|
51
|
+
type: :runtime
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0.0'
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 0.0.1
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: CapicuaGenMelchior
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0.0'
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 0.0.1
|
71
|
+
type: :runtime
|
72
|
+
prerelease: false
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "~>"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0.0'
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 0.0.1
|
81
|
+
description: |
|
82
|
+
CapicuaGen es un software que ayuda a la creación automática de
|
83
|
+
sistemas empresariales a través de la definición y ensamblado de
|
84
|
+
diversos generadores de características.
|
85
|
+
|
86
|
+
Gaspar es un conjunto de generadores de caracteristicas de ejemplo pertenecientes a CapicuaGen
|
87
|
+
que generan un proyecto de Windows
|
88
|
+
|
89
|
+
El proyecto fue iniciado por José Luis Bautista Martin, el 6 de enero
|
90
|
+
del 2016.
|
91
|
+
|
92
|
+
Puede modificar y distribuir este software, según le plazca, y usarlo
|
93
|
+
para cualquier fin ya sea comercial, personal, educativo, o de cualquier
|
94
|
+
índole, siempre y cuando incluya este mensaje, y se permita acceso el
|
95
|
+
código fuente.
|
96
|
+
|
97
|
+
Este software es código libre, y se licencia bajo LGPL.
|
98
|
+
|
99
|
+
Para más información consultar http://www.gnu.org/licenses/lgpl.html
|
100
|
+
email:
|
101
|
+
- joseluisbautista@gmail.com
|
102
|
+
executables: []
|
103
|
+
extensions: []
|
104
|
+
extra_rdoc_files: []
|
105
|
+
files:
|
106
|
+
- ".gitignore"
|
107
|
+
- ".rspec"
|
108
|
+
- ".travis.yml"
|
109
|
+
- CODE_OF_CONDUCT.md
|
110
|
+
- CapicuaGenGaspar.gemspec
|
111
|
+
- Gemfile
|
112
|
+
- Gemfile.lock
|
113
|
+
- LICENSE
|
114
|
+
- README.md
|
115
|
+
- Rakefile
|
116
|
+
- bin/console
|
117
|
+
- bin/setup
|
118
|
+
- lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Source/cs_sql_entity_interface_feature.rb
|
119
|
+
- lib/CapicuaGenGaspar/Business/CSSqlEntitityInterface/Template/table_interface.erb
|
120
|
+
- lib/CapicuaGenGaspar/Business/CSSqlEntity/Source/cs_sql_entity_feature.rb
|
121
|
+
- lib/CapicuaGenGaspar/Business/CSSqlEntity/Template/table_entity.erb
|
122
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Source/cs_header_footer_feature.rb
|
123
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/footer.erb
|
124
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CSHeaderFooter/Template/header.erb
|
125
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE.dll
|
126
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/EnvDTE80.dll
|
127
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe
|
128
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/RunCodeMaidCleaner.exe.config
|
129
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Bin/stdole.dll
|
130
|
+
- lib/CapicuaGenGaspar/CodeTransformer/CodeMaidCleaner/Source/code_maid_cleaner_feature.rb
|
131
|
+
- lib/CapicuaGenGaspar/DataAccess/CSConnectionProvider/Source/cs_db_connection_provider_feature.rb
|
132
|
+
- lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Source/cs_sql_data_access_feature.rb
|
133
|
+
- lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access.erb
|
134
|
+
- lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_exception.erb
|
135
|
+
- lib/CapicuaGenGaspar/DataAccess/CSSqlDataAccess/Template/data_access_table.erb
|
136
|
+
- lib/CapicuaGenGaspar/Entities/CSEntity/Source/entity_field_schema.rb
|
137
|
+
- lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Source/cs_about_windows_form_feature.rb
|
138
|
+
- lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.designer.erb
|
139
|
+
- lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.erb
|
140
|
+
- lib/CapicuaGenGaspar/GUI/CSAboutWindowsForm/Template/AboutForm.resx.erb
|
141
|
+
- lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Source/cs_catalog_windows_form_feature.rb
|
142
|
+
- lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.Designer.erb
|
143
|
+
- lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.erb
|
144
|
+
- lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogForm.resx.erb
|
145
|
+
- lib/CapicuaGenGaspar/GUI/CSCatalogWindowsForm/Template/CatalogState.erb
|
146
|
+
- lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Source/cs_mdi_windows_form_feature.rb
|
147
|
+
- lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.Designer.erb
|
148
|
+
- lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.erb
|
149
|
+
- lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MainForm.resx.erb
|
150
|
+
- lib/CapicuaGenGaspar/GUI/CSMDIWindowsForm/Template/MsgboxConsts.erb
|
151
|
+
- lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Source/cs_splash_windows_feature.rb
|
152
|
+
- lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.designer.erb
|
153
|
+
- lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.erb
|
154
|
+
- lib/CapicuaGenGaspar/GUI/CSSplashWindowsForm/Template/SplashForm.resx.erb
|
155
|
+
- lib/CapicuaGenGaspar/Mixins/about_mixin.rb
|
156
|
+
- lib/CapicuaGenGaspar/Mixins/catalog_mixin.rb
|
157
|
+
- lib/CapicuaGenGaspar/Mixins/cs_app_config_mixin.rb
|
158
|
+
- lib/CapicuaGenGaspar/Mixins/cs_db_connection_provider_mixin.rb
|
159
|
+
- lib/CapicuaGenGaspar/Mixins/cs_namespace_mixin.rb
|
160
|
+
- lib/CapicuaGenGaspar/Mixins/entity_interface_mixin.rb
|
161
|
+
- lib/CapicuaGenGaspar/Mixins/entity_mixin.rb
|
162
|
+
- lib/CapicuaGenGaspar/Mixins/entity_sql_table_mixin.rb
|
163
|
+
- lib/CapicuaGenGaspar/Mixins/main_form_mixin.rb
|
164
|
+
- lib/CapicuaGenGaspar/Mixins/splash_mixin.rb
|
165
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyect/Source/cs_proyect_feature.rb
|
166
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Source/cs_proyect_rest_ful_feature.rb
|
167
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/AssemblyInfo.erb
|
168
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/ExcepcionControlada.erb
|
169
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Proyect.erb
|
170
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Soluction.erb
|
171
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectRESTFul/Template/Web.erb
|
172
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Source/cs_proyect_windows_form_feature.rb
|
173
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/App.erb
|
174
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/AssemblyInfo.erb
|
175
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ControlExcepciones.erb
|
176
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/ExcepcionControlada.erb
|
177
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Program.erb
|
178
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Proyect.erb
|
179
|
+
- lib/CapicuaGenGaspar/Proyect/CSProyectWindowsForm/Template/Soluction.erb
|
180
|
+
- lib/CapicuaGenGaspar/Tools/message_helper.rb
|
181
|
+
- lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Source/cs_rest_ful_catalog_feature.rb
|
182
|
+
- lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/CatalogState.erb
|
183
|
+
- lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.erb
|
184
|
+
- lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/Catalogs.svc.erb
|
185
|
+
- lib/CapicuaGenGaspar/WCFService/CSRESTFulCatalog/Template/ICatalogs.erb
|
186
|
+
- lib/CapicuaGenGaspar/gaspar.rb
|
187
|
+
- lib/CapicuaGenGaspar/version.rb
|
188
|
+
homepage: http://desdelashorasextras.blogspot.mx/
|
189
|
+
licenses:
|
190
|
+
- LGPL
|
191
|
+
metadata:
|
192
|
+
allowed_push_host: https://rubygems.org
|
193
|
+
post_install_message:
|
194
|
+
rdoc_options: []
|
195
|
+
require_paths:
|
196
|
+
- lib
|
197
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0'
|
207
|
+
requirements: []
|
208
|
+
rubyforge_project:
|
209
|
+
rubygems_version: 2.4.5.1
|
210
|
+
signing_key:
|
211
|
+
specification_version: 4
|
212
|
+
summary: CapicuaGen es un software que ayuda a la creación automática de sistemas
|
213
|
+
empresariales a través de la definición y ensamblado de diversos generadores de
|
214
|
+
características.Gaspar es un conjunto de generadores de caracteristicas de ejemplo
|
215
|
+
pertenecientes a CapicuaGen que generan un proyecto de Windows.
|
216
|
+
test_files: []
|