roject 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa3fe871560329e9b7190ad7bd2463fdafe4e9c2
4
- data.tar.gz: 5997c6dbd154d69ba4f3af0e597b1f6c3cbcf34f
3
+ metadata.gz: 08bd9ebfc4cf93c5b28cbef2ec86690f62589d92
4
+ data.tar.gz: f87d74bc4a8fae6c85103bf5d859ac58790d5d33
5
5
  SHA512:
6
- metadata.gz: 7d8da665ec2267de39a037f90012177071a3d4b08ecb78f438342d2e85bcda66675310524a7c4c0204c2a798c2218862a1b344d316c41d874c7b066066053bb0
7
- data.tar.gz: cac8c7b65096d1b5a539ab01ed355df674b755e50665b1a30dde3e648a7357c1ecbef77a49380e656b7afff3bde4c57d26fc4d112859e5d080894af1fdc07c76
6
+ metadata.gz: ffdcacbc7fe089cbd09a4b1a23eefdfa1f29a2f8b9db770d04e10e99504fc4c4052dbf1522f3bf6264b8f97c0e73ed373ce3c96a8561d66f1f85f7ebe435d3c8
7
+ data.tar.gz: 15fd4b18682878fd2ef4d54e6ea745611938ff48962f5dd032d81e8d7c1e3067aa025cde6b8e9f25bcd2934f6cb09035c7b1161ede9072f41f077f0250f9d342
@@ -0,0 +1,22 @@
1
+ // Include libraries
2
+ #include <iostream>
3
+
4
+ // Namespaces
5
+ using namespace std;
6
+
7
+ /**
8
+ * The main function of the program
9
+ *
10
+ * @at;param argc the number of command line arguments
11
+ * @at;param argv the array of command line arguments
12
+ *
13
+ * @at;return exit status
14
+ */
15
+ int main(int argc, const char **argv)
16
+ {
17
+ // Code
18
+ cout << "Hello World!" << endl;
19
+
20
+ // System Exit
21
+ return 0;
22
+ }
@@ -0,0 +1,55 @@
1
+ # -------------------------------- CONFIG --------------------------------
2
+
3
+ TARGET = @(project_name -> lowercase)
4
+
5
+ SHELL = /bin/bash -O globstar
6
+ CC = g++
7
+
8
+ COMPILE = $(CC) -c
9
+ LINK = $(CC)
10
+
11
+ CFLAGS = -Wall -std=c++14
12
+ LFLAGS = -Wall
13
+ INCLUD = -Iinclude
14
+ LIBRAR = -Llib
15
+
16
+ # -------------------------------- FOLDER --------------------------------
17
+
18
+ INCDIR = include
19
+ SRCDIR = src
20
+ OBJDIR = obj
21
+ BINDIR = bin
22
+ INSDIR = /usr/bin
23
+
24
+ # -------------------------------- FILES --------------------------------
25
+
26
+ INCLUDS = $(shell ls $(INCDIR)/**/*.h)
27
+ SOURCES = $(shell ls $(SRCDIR)/**/*.cpp)
28
+ OBJECTS = $(patsubst $(SRCDIR)/%.cpp, $(OBJDIR)/%.o, $(SOURCES))
29
+ BINARY = $(BINDIR)/$(TARGET)
30
+
31
+ # -------------------------------- TASKS --------------------------------
32
+
33
+ $(BINARY): $(OBJECTS)
34
+ @at;echo $(SOURCES)
35
+ @at;test -d $(@at;D) || mkdir $(@at;D)
36
+ @at;echo building $@at;
37
+ @at;$(LINK) $^ -o $@at; $(LFLAGS) $(LIBRAR)
38
+
39
+ $(OBJDIR)/%.o: $(SRCDIR)/%.cpp $(INCLUDS)
40
+ @at;test -d $(@at;D) || mkdir $(@at;D)
41
+ @at;echo compiling $<
42
+ @at;$(COMPILE) $< -o $@at; $(CPPFLAGS) $(INCLUD)
43
+
44
+ clean:
45
+ @at;echo Cleaning up...
46
+ @at;rm -r $(OBJDIR) $(BINDIR)
47
+
48
+ install:
49
+ cp $(BINDIR)/$(TARGET) $(INSDIR)
50
+
51
+ uninstall:
52
+ rm $(INSDIR)/$(TARGET)
53
+
54
+ run:
55
+ $(BINARY)
@@ -0,0 +1,22 @@
1
+ // Include libraries
2
+ #include <iostream>
3
+
4
+ // Namespaces
5
+ using namespace std;
6
+
7
+ /**
8
+ * The main function of the program
9
+ *
10
+ * @param argc the number of command line arguments
11
+ * @param argv the array of command line arguments
12
+ *
13
+ * @return exit status
14
+ */
15
+ int main(int argc, const char **argv)
16
+ {
17
+ // Code
18
+ cout << "Hello World!" << endl;
19
+
20
+ // System Exit
21
+ return 0;
22
+ }
@@ -1,11 +1,11 @@
1
1
  /*
2
2
 
3
- Program: Dre
3
+ Program: Foo
4
4
 
5
- Nowadays everybody wanna talk like they got somethin' to say but nothin' comes out when they move their lips just a bunch of gibberish and they all acting like they forgot about Dre.
5
+ Foo bar baz joo jar jaz noo kar kaz
6
6
 
7
7
  Author: Anshul Kharbanda
8
- Created: 7 - 23 - 2016
8
+ Created: 7 - 24 - 2016
9
9
 
10
10
  */
11
11
 
@@ -1,14 +1,14 @@
1
1
  /*
2
2
 
3
- Program: Dre
3
+ Program: Foo
4
4
 
5
- Nowadays everybody wanna talk like they got somethin' to say but nothin' comes out when they move their lips just a bunch of gibberish and they all acting like they forgot about Dre.
5
+ Foo bar baz joo jar jaz noo kar kaz
6
6
 
7
7
  Author: Anshul Kharbanda
8
- Created: 7 - 23 - 2016
8
+ Created: 7 - 24 - 2016
9
9
 
10
10
  */
11
11
 
12
- #include "Dre/path/to/file.h"
12
+ #include "Foo/path/to/file.h"
13
13
 
14
14
  // Code
data/lib/project.rb CHANGED
@@ -109,7 +109,7 @@ module Roject
109
109
  #
110
110
  # Parameter: name - the name of the maker to run
111
111
  # Parameter: args - the args to pass to the file
112
- def make(name, args)
112
+ def make name, args={}
113
113
  if @makers.has_key? name
114
114
  @makers[name].make self, args
115
115
  else
data/lib/roject.rb CHANGED
@@ -20,5 +20,5 @@ require_relative "project"
20
20
  # Created: 7 - 8 - 2016
21
21
  module Roject
22
22
  # The Version of Roject
23
- VERSION = "1.0.1"
23
+ VERSION = "1.0.2"
24
24
  end
data/spec/project_spec.rb CHANGED
@@ -36,281 +36,276 @@ describe Roject::Project do
36
36
  short_description: "Foo bar",
37
37
  long_description: "Foo bar baz joo jar jaz noo kar kaz"
38
38
  })
39
+
40
+ # Project info
41
+ @path = "path/to/file"
42
+ @config = @foocfg
43
+
44
+ # ----------------------FILE MAKERS----------------------
45
+
46
+ @header = {
47
+ name: :header,
48
+ path: "include/@(project_name)/@(path)",
49
+ template: "header.general",
50
+ extension: "h",
51
+ out: "include/#{@config[:project_name]}/#{@path}.h",
52
+ text: IO.read("output/testheader.h")
53
+ }
54
+
55
+ @source = {
56
+ name: :source,
57
+ path: "src/@(path)",
58
+ template: "source.general",
59
+ extension: "cpp",
60
+ out: "src/#{@path}.cpp",
61
+ text: IO.read("output/testsource.cpp")
62
+ }
63
+
64
+ @makefile = {
65
+ name: :makefile,
66
+ path: "Makefile",
67
+ template: "makefile.general",
68
+ extension: nil,
69
+ out: "Makefile",
70
+ text: IO.read("output/Makefile")
71
+ }
72
+
73
+ @main = {
74
+ name: :main,
75
+ path: "src/main",
76
+ template: "main.general",
77
+ extension: "cpp",
78
+ out: "src/main.cpp",
79
+ text: IO.read("output/main.cpp")
80
+ }
81
+
82
+ # ----------------------TASK MAKERS----------------------
83
+
84
+ @module = {
85
+ name: :module,
86
+ block: Proc.new do |args|
87
+ args[:header_id] = c_header_id(args[:path])
88
+ make :header, args
89
+ make :source, args
90
+ end
91
+ }
92
+
93
+ @init = {
94
+ name: :init,
95
+ block: Proc.new do |args|
96
+ make :makefile
97
+ make :main
98
+ end
99
+ }
39
100
  end
40
101
 
41
- # Describe Roject::Project#config
102
+ # Describe Roject::Project::exist?
42
103
  #
43
- # If a hash is given, sets the Project configuration to the hash.
44
- # Else, returns the configuration of the Project.
45
- #
46
- # Parameter: hash - the hash to configure the project with
104
+ # Check if a project file exists in the current directory
105
+ #
106
+ # Parameter: filename - the filename to check
107
+ # (defaults to the default filename)
47
108
  #
48
- # Return: the configuration of the Project
49
- describe '#config' do
50
- context 'with no arguments given' do
51
- it 'returns the configuration of the Project' do
52
- expect(@project.config).to eql Roject::Project::CONFIG_DEFAULT
53
- end
109
+ # Returns: true if the project file exists in the current
110
+ # directory
111
+ describe '::exist?' do
112
+ it 'checks if the given project filename exists in the current directory' do
113
+ expect(Roject::Project).to be_exist(@foofle)
54
114
  end
55
115
 
56
- context 'with hash given' do
57
- it 'configures the Project with the given hash' do
58
- expect{@project.config(@foocfg)}.not_to raise_error
59
- expect(@project.config).to eql @foocfg
60
- end
116
+ it 'checks the default project filename if no filename is given' do
117
+ expect(Roject::Project).to be_exist
61
118
  end
62
119
  end
63
120
 
64
- # Describe Roject::Project loading system
121
+ # Describe Roject::Project::load
65
122
  #
66
- # The system of loading and reloading from a file
123
+ # Loads a Project from the project file with the given filename
124
+ #
125
+ # Parameter: filename - the name of the file to parse
67
126
  #
68
- # Author: Anshul Kharbanda
69
- # Created: 7 - 25 - 2016
70
- describe 'loading' do
71
- # Describe Roject::Project::exist?
72
- #
73
- # Check if a project file exists in the current directory
74
- #
75
- # Parameter: filename - the filename to check
76
- # (defaults to the default filename)
77
- #
78
- # Returns: true if the project file exists in the current
79
- # directory
80
- describe '::exist?' do
81
- context 'with a filename given' do
82
- it 'checks if the given project filename exists in the current directory' do
83
- expect(Roject::Project).to be_exist(@foofle)
84
- end
85
- end
127
+ # Return: Project loaded from the file
128
+ describe '::load' do
129
+ # Check when filename is given
130
+ it 'loads a project from the given filename' do
131
+ # Test loading foobar.rb file
132
+ expect{@project = Roject::Project.load(@foofle)}.not_to raise_error
133
+ expect(@project).to be_an_instance_of Roject::Project
134
+ expect(@project.config).to eql @foocfg
135
+ end
86
136
 
87
- context 'with no filename given' do
88
- it 'checks if the default project filename exists in the current directory' do
89
- expect(Roject::Project).to be_exist
90
- end
91
- end
137
+ # Check when filename is not given
138
+ it 'loads a project from the default filename (if no filename is given)' do
139
+ # Test loading default file
140
+ expect{@project = Roject::Project.load}.not_to raise_error
141
+ expect(@project).to be_an_instance_of Roject::Project
92
142
  end
93
143
 
94
- # Describe Roject::Project::load
95
- #
96
- # Loads a Project from the project file with the given filename
97
- #
98
- # Parameter: filename - the name of the file to parse
99
- #
100
- # Return: Project loaded from the file
101
- describe '::load' do
102
- # Check when filename is given
103
- context 'with a filename given' do
104
- it 'loads a project from the given filename' do
105
- # Test loading foobar.rb file
106
- expect{@project = Roject::Project.load(@foofle)}.not_to raise_error
107
- expect(@project).to be_an_instance_of Roject::Project
108
- expect(@project.config).to eql @foocfg
109
- end
110
- end
144
+ # Delete makers
145
+ after :all do @project.instance_variable_set :@makers, {} end
146
+ end
111
147
 
112
- # Check when filename is not given
113
- context 'with no filename given' do
114
- it 'loads a project from the default filename' do
115
- # Test loading default file
116
- expect{@project = Roject::Project.load}.not_to raise_error
117
- expect(@project).to be_an_instance_of Roject::Project
118
- end
119
- end
148
+ # Describe Roject::Project::open
149
+ #
150
+ # Alias for load if no block is given. Evaluates the given
151
+ # block in the context of the project if block is given
152
+ #
153
+ # Parameter: filename - the name of the file to parse
154
+ # (defaults to the default filename)
155
+ # Parameter: block - the block to evaluate within the
156
+ # context of the project
157
+ #
158
+ # Return: Project loaded from the file
159
+ describe '::open' do
160
+ # Check for when no block is given
161
+ it 'loads the project and returns it with no block given' do
162
+ expect { @project = Roject::Project.open }.not_to raise_error
163
+ expect(@project).to be_an_instance_of Roject::Project
120
164
  end
121
165
 
122
- # Describe Roject::Project::open
123
- #
124
- # Alias for load if no block is given. Evaluates the given
125
- # block in the context of the project if block is given
126
- #
127
- # Parameter: filename - the name of the file to parse
128
- # (defaults to the default filename)
129
- # Parameter: block - the block to evaluate within the
130
- # context of the project
131
- #
132
- # Return: Project loaded from the file
133
- describe '::open' do
134
- # Check for when block is given
135
- context 'with a block given' do
136
- it 'loads the project and evaluates it within the given block' do
137
- project = nil
138
- expect { Roject::Project.open { project = self } }.not_to raise_error
139
- expect(project).to be_an_instance_of Roject::Project
140
- end
141
- end
142
-
143
- # Check for when no block is given
144
- context 'with no block given' do
145
- it 'loads the project' do
146
- expect { @project = Roject::Project.open }.not_to raise_error
147
- expect(@project).to be_an_instance_of Roject::Project
148
- end
149
- end
166
+ # Check for when block is given
167
+ it 'loads the project and evaluates in the context of the project (if block given)' do
168
+ project = nil
169
+ expect { Roject::Project.open { project = self } }.not_to raise_error
170
+ expect(project).to be_an_instance_of Roject::Project
150
171
  end
151
172
 
152
- # Describe Roject::Project#reload
153
- #
154
- # Reloads the project with the file with the given filename
155
- #
156
- # Parameter: filename - the name of the file to parse
157
- # (defaults to the default filename)
158
- describe '#reload' do
159
- context 'with a filename given' do
160
- it 'loads the given filename into the project' do
161
- # Test loading foobar.rb file
162
- expect{@project.reload("foobar.rb")}.not_to raise_error
163
- expect(@project).to be_an_instance_of Roject::Project
164
- expect(@project.config).to eql @foocfg
165
- end
166
- end
173
+ # Delete makers
174
+ after :all do @project.instance_variable_set :@makers, {} end
175
+ end
167
176
 
168
- context 'with no filename given' do
169
- it 'loads the default filename into the project' do
170
- # Test loading default file
171
- expect{@project.reload}.not_to raise_error
172
- expect(@project).to be_an_instance_of Roject::Project
173
- end
174
- end
177
+ # Describe Roject::Project#reload
178
+ #
179
+ # Reloads the project with the file with the given filename
180
+ #
181
+ # Parameter: filename - the name of the file to parse
182
+ # (defaults to the default filename)
183
+ describe '#reload' do
184
+ # Test loading foobar.rb file
185
+ it 'loads the given filename into the project' do
186
+ expect{@project.reload("foobar.rb")}.not_to raise_error
187
+ expect(@project).to be_an_instance_of Roject::Project
188
+ expect(@project.config).to eql @foocfg
189
+ end
190
+
191
+ # Test loading default file
192
+ it 'loads the default filename (if no filename is given)' do
193
+ expect{@project.reload}.not_to raise_error
194
+ expect(@project).to be_an_instance_of Roject::Project
175
195
  end
176
196
 
177
197
  # Delete makers
178
198
  after :all do @project.instance_variable_set :@makers, {} end
179
199
  end
180
200
 
181
- # Describe Roject::Project makers
182
- #
183
- # The system of automating tasks in Roject
201
+ # Describe Roject::Project#config
184
202
  #
185
- # Author: Anshul Kharbanda
186
- # Created: 7 - 24 - 2016
187
- describe 'makers' do
188
- # Before all
189
- before :all do
190
- @path = "path/to/file"
191
- @config = @project.config
192
-
193
- # ----------------------FILE INFO----------------------
194
-
195
- @header = {
196
- name: :header,
197
- path: "include/@(project_name)/@(path)",
198
- template: "header.general",
199
- extension: "h",
200
- out: "include/#{@config[:project_name]}/#{@path}.h",
201
- text: IO.read("output/testheader.h")
202
- }
203
-
204
- @source = {
205
- name: :source,
206
- path: "src/@(path)",
207
- template: "source.general",
208
- extension: "cpp",
209
- out: "src/#{@path}.cpp",
210
- text: IO.read("output/testsource.cpp")
211
- }
212
-
213
- # ----------------------TASK INFO----------------------
214
-
215
- @module = {
216
- name: :module,
217
- block: Proc.new do |args|
218
- args[:header_id] = c_header_id(args[:path])
219
- make :header, args
220
- make :source, args
221
- end
222
- }
203
+ # If a hash is given, sets the Project configuration to the hash.
204
+ # Else, returns the configuration of the Project.
205
+ #
206
+ # Parameter: hash - the hash to configure the project with
207
+ #
208
+ # Return: the configuration of the Project
209
+ describe '#config' do
210
+ it 'returns the configuration of the Project with no arguments given' do
211
+ expect(@project.config).to eql Roject::Project::CONFIG_DEFAULT
212
+ end
213
+
214
+ it 'configures the Project if a configuration hash is given' do
215
+ expect{@project.config(@foocfg)}.not_to raise_error
216
+ expect(@project.config).to eql @foocfg
223
217
  end
218
+ end
224
219
 
225
- # Describe Roject::Project#file
226
- #
227
- # Creates a file maker with the given name and hash
228
- #
229
- # Parameter: name - the name of the maker
230
- # Parameter: hash - the hash arguments of the maker
231
- describe '#file' do
232
- it 'creates a file maker with the given name and hash of arguments' do
233
- # Each file type
234
- [@header, @source].each do |ft|
235
- # Create filemaker
236
- @project.file ft[:name], ft
237
-
238
- # Get Filemaker
239
- fmkr = @project.instance_variable_get(:@makers)[ft[:name]]
240
- expect(fmkr).to be_an_instance_of Roject::FileMaker
241
-
242
- # Path
243
- expect(fmkr.instance_variable_get(:@path)).to be_an_instance_of General::GTemplate
244
- expect(fmkr.instance_variable_get(:@path).to_s).to eql ft[:path]
245
-
246
- # Template
247
- expect(fmkr.instance_variable_get(:@template)).to be_an_instance_of General::GIO
248
- expect(fmkr.instance_variable_get(:@template).source).to eql "#{@config[:directory][:templates]}/#{ft[:template]}"
249
-
250
- # Extension
251
- expect(fmkr.instance_variable_get(:@extension)).to eql ft[:extension]
252
- end
220
+ # Describe Roject::Project#file
221
+ #
222
+ # Creates a file maker with the given name and hash
223
+ #
224
+ # Parameter: name - the name of the maker
225
+ # Parameter: hash - the hash arguments of the maker
226
+ describe '#file' do
227
+ it 'creates a file maker with the given name and hash of arguments' do
228
+ # Each file type
229
+ [@header, @source, @makefile, @main].each do |ft|
230
+ # Create filemaker
231
+ @project.file ft[:name], ft
232
+ fmkr = @project.instance_variable_get(:@makers)[ft[:name]]
233
+
234
+ # Filemaker
235
+ expect(fmkr).to be_an_instance_of Roject::FileMaker
236
+
237
+ # Path
238
+ expect(fmkr.instance_variable_get(:@path)).to be_an_instance_of General::GTemplate
239
+ expect(fmkr.instance_variable_get(:@path).to_s).to eql ft[:path]
240
+
241
+ # Template
242
+ expect(fmkr.instance_variable_get(:@template)).to be_an_instance_of General::GIO
243
+ expect(fmkr.instance_variable_get(:@template).source).to eql "#{@config[:directory][:templates]}/#{ft[:template]}"
244
+
245
+ # Extension
246
+ expect(fmkr.instance_variable_get(:@extension)).to eql ft[:extension]
253
247
  end
254
248
  end
249
+ end
255
250
 
256
- # Describe Roject::Project#task
257
- #
258
- # Creates a task maker with the given name and block
259
- #
260
- # Parameter: name - the name of the recipie
261
- # Parameter: block - the recipie block
262
- describe '#task' do
263
- it 'creates a task maker with the given name and block' do
251
+ # Describe Roject::Project#task
252
+ #
253
+ # Creates a task maker with the given name and block
254
+ #
255
+ # Parameter: name - the name of the recipie
256
+ # Parameter: block - the recipie block
257
+ describe '#task' do
258
+ it 'creates a task maker with the given name and block' do
259
+ [@module, @init].each do |tk|
264
260
  # Create taskmaker
265
- @project.task @module[:name], &@module[:block]
261
+ @project.task tk[:name], &tk[:block]
262
+ tmkr = @project.instance_variable_get(:@makers)[tk[:name]]
266
263
 
267
- # Get filemaker
268
- tmkr = @project.instance_variable_get(:@makers)[@module[:name]]
264
+ # Check taskmaker
269
265
  expect(tmkr).to be_an_instance_of Roject::TaskMaker
270
266
  end
271
267
  end
268
+ end
272
269
 
273
- # Describe Roject::Project#make
274
- #
275
- # Runs the maker of the given name with the given args
276
- #
277
- # Parameter: name - the name of the maker to run
278
- # Parameter: args - the args to pass to the file
279
- describe '#make' do
280
- # Creating filetype
281
- context 'with a file maker name given' do
282
- it 'creates a file of the given type with the given arguments' do
283
- # Each file type
284
- [@header, @source].each do |ft|
285
- # Make Header
286
- @project.make ft[:name],
287
- path: @path,
288
- header_id: @project.c_header_id(@path)
289
-
290
- # Test output
291
- expect(File).to be_file(ft[:out])
292
- expect(IO.read(ft[:out])).to eql ft[:text]
293
- end
294
- end
270
+ # Describe Roject::Project#make
271
+ #
272
+ # Runs the maker of the given name with the given args
273
+ #
274
+ # Parameter: name - the name of the maker to run
275
+ # Parameter: args - the args to pass to the file
276
+ describe '#make' do
277
+ # Creating filetype
278
+ it 'creates the given filetype with the given arguments if a file maker name is given' do
279
+ # Each file type
280
+ [@header, @source, @makefile, @main].each do |ft|
281
+ # Make Header
282
+ @project.make ft[:name],
283
+ path: @path,
284
+ header_id: @project.c_header_id(@path)
285
+
286
+ # Test output
287
+ expect(File).to be_file(ft[:out])
288
+ expect(IO.read(ft[:out])).to eql ft[:text]
295
289
  end
290
+ end
291
+
292
+ # Performing task
293
+ it 'performs the given task with the given arguments if task maker name is given' do
294
+ # Do module tasks
295
+ @project.make @module[:name], path: @path
296
296
 
297
- # Performing task
298
- context 'with a task maker name given' do
299
- it 'performs the task of the given name with the given arguments' do
300
- # Do task
301
- @project.make @module[:name], path: @path
302
-
303
- # Each header
304
- [@header, @source].each do |file|
305
- # Test output
306
- expect(File).to be_file(file[:out])
307
- expect(IO.read(file[:out])).to eql file[:text]
308
- end
309
- end
297
+ # Each header
298
+ [@header, @source].each do |file|
299
+ # Test output
300
+ expect(File).to be_file(file[:out])
301
+ expect(IO.read(file[:out])).to eql file[:text]
310
302
  end
303
+ end
311
304
 
312
- # Do afterwards
313
- after :each do FileUtils.rmtree ["include", "src"] end
305
+ # Delete files
306
+ after :all do
307
+ FileUtils.rmtree ["include", "src"]
308
+ FileUtils.rm "Makefile"
314
309
  end
315
310
  end
316
311
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roject
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anshul Kharbanda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-07 00:00:00.000000000 Z
11
+ date: 2017-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: general
@@ -80,8 +80,11 @@ files:
80
80
  - Rakefile
81
81
  - bin/roject
82
82
  - exp/project/_templates/header.general
83
+ - exp/project/_templates/main.general
84
+ - exp/project/_templates/makefile.general
83
85
  - exp/project/_templates/source.general
84
86
  - exp/project/foobar.rb
87
+ - exp/project/output/main.cpp
85
88
  - exp/project/output/testheader.h
86
89
  - exp/project/output/testsource.cpp
87
90
  - exp/project/project.rb