voluntary_scholarship 0.0.1 → 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 939bc4d6c802078e416b262b4849c85b13ed598b
4
+ data.tar.gz: 825a6c55a1b612729157c77de89e8546449a3dbe
5
+ SHA512:
6
+ metadata.gz: dde857dadfe24970831209f876a2961399f642bce9049e7b03bc57f53bd5dea4c1adb31e7cd585f2278e89effedc124a526df8dc2afa4f3c898742b1175ac038
7
+ data.tar.gz: b766bef78559e4be47c142126e6c18d77740d079b57199432221fc5f06a9d49946d00d1a016ee411c6cded9bfdeaadc0f00fb47dd794d50d019c6f45918c9f33
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 - 2015 Mathias Gawlista
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # voluntary_scholarship [![Build Status](https://travis-ci.org/volontariat/voluntary_scholarship.svg?branch=master)](https://travis-ci.org/volontariat/voluntary_scholarship) [![Code Climate](https://codeclimate.com/github/volontariat/voluntary_scholarship/badges/gpa.svg)](https://codeclimate.com/github/volontariat/voluntary_scholarship) [![Test Coverage](https://codeclimate.com/github/volontariat/voluntary_scholarship/badges/coverage.svg)](https://codeclimate.com/github/volontariat/voluntary_scholarship) [![Dependency Status](https://gemnasium.com/volontariat/voluntary_scholarship.png)](https://gemnasium.com/volontariat/voluntary_scholarship)
2
+
3
+ Scholarship plugin for crowdsourcing management system Voluntary.Software.
4
+
5
+ ## Installation
6
+
7
+ Preconditions: install the voluntary gem in your rails application https://GitHub.com/volontariat/voluntary
8
+
9
+ Add this to your Gemfile:
10
+
11
+ ```ruby
12
+ gem 'voluntary_scholarship'
13
+ ```
14
+
15
+ Run this in your console:
16
+
17
+ ```bash
18
+ bundle install
19
+ ```
20
+
21
+ Run this in your console:
22
+
23
+ ```bash
24
+ rake railties:install:migrations
25
+ ```
26
+
27
+ ## License
28
+
29
+ This project uses MIT-LICENSE.
@@ -1,6 +1,8 @@
1
1
  module VoluntaryScholarship
2
2
  module IterationParticipationsHelper
3
3
  def can_update_scholarship_iteration_participation_roles?(iteration_participation)
4
+ return false unless user_signed_in?
5
+
4
6
  iteration_participation.new_record? ||
5
7
  current_user.is_master? ||
6
8
  current_user.id == iteration_participation.iteration.program.organization.user_id ||
@@ -1,6 +1,8 @@
1
1
  module VoluntaryScholarship
2
2
  module TeamMembershipsHelper
3
3
  def can_update_scholarship_team_membership_roles?(team_membership)
4
+ return false unless user_signed_in?
5
+
4
6
  team_membership.new_record? ||
5
7
  current_user.is_master? ||
6
8
  current_user.is_leader_of_scholarship_team?(team_membership.team) ||
@@ -7,7 +7,7 @@ module Scholarship
7
7
 
8
8
  scope :order_by_user_full_name, -> do
9
9
  joins(:user).
10
- select(table_name + '.*, CONCAT(users.first_name, " ", users.last_name) AS user_full_name').
10
+ select(table_name + ".*, CONCAT(users.first_name, ' ', users.last_name) AS user_full_name").
11
11
  order('user_full_name ASC')
12
12
  end
13
13
 
@@ -18,6 +18,8 @@ module Scholarship
18
18
 
19
19
  validates :roles, presence: true
20
20
 
21
+ after_initialize :set_initial_state
22
+
21
23
  state_machine :state, initial: :requested do
22
24
  event :accept do
23
25
  transition [:requested, :denied, :changed_roles] => :accepted
@@ -31,6 +33,12 @@ module Scholarship
31
33
  transition :accepted => :changed_roles
32
34
  end
33
35
  end
36
+
37
+ private
38
+
39
+ def set_initial_state
40
+ self.state ||= :requested
41
+ end
34
42
  end
35
43
  end
36
44
  end
@@ -9,10 +9,11 @@
9
9
  <li><%= link_to t('general.edit'), eval("edit_scholarship_iteration_participation_path(iteration_participation)") %></li>
10
10
  <% end %>
11
11
 
12
- <% if iteration_participation.state_events.select{|event| can? event, iteration_participation }.any? %>
12
+ <% links = event_links_for_resource(iteration_participation, 'scholarship_iteration_participations') %>
13
+ <% if links.any? %>
13
14
  <li class="divider"></li>
15
+ <%= render 'shared/resource/event_elements', links: links %>
14
16
  <% end %>
15
- <%= render 'shared/resource/event_elements', resource: iteration_participation, type: 'scholarship_iteration_participations' %>
16
17
  </ul>
17
18
  </div>
18
19
  <% end %>
@@ -42,8 +42,8 @@
42
42
 
43
43
  <%= will_paginate @iteration_participations %>
44
44
 
45
- <% if @iteration.present? %>
46
- <% if current_user.is_participant_of_scholarship_iteration?(@iteration) %>
45
+ <% if @iteration.present? && user_signed_in? %>
46
+ <% if current_user && current_user.is_participant_of_scholarship_iteration?(@iteration) %>
47
47
  <%= destroy_scholarship_iteration_participation_link(current_user.participation_of_scholarship_iteration(@iteration)) %>
48
48
  <% elsif can?(:create, Scholarship::IterationParticipation) %>
49
49
  <%= link_to t("scholarship_iteration_participations.new.title"), new_scholarship_iteration_participant_path(@iteration) %>
@@ -9,10 +9,11 @@
9
9
  <li><%= link_to t('general.edit'), eval("edit_scholarship_team_membership_path(team_membership)") %></li>
10
10
  <% end %>
11
11
 
12
- <% if team_membership.state_events.select{|event| can? event, team_membership }.any? %>
12
+ <% links = event_links_for_resource(team_membership, 'scholarship_team_memberships') %>
13
+ <% if links.any? %>
13
14
  <li class="divider"></li>
15
+ <%= render 'shared/resource/event_elements', links: links %>
14
16
  <% end %>
15
- <%= render 'shared/resource/event_elements', resource: team_membership, type: 'scholarship_team_memberships' %>
16
17
  </ul>
17
18
  </div>
18
19
  <% end %>
@@ -38,7 +38,7 @@
38
38
 
39
39
  <%= will_paginate @team_memberships %>
40
40
 
41
- <% if @team.present? %>
41
+ <% if @team.present? && user_signed_in? %>
42
42
  <% if current_user.is_member_of_scholarship_team?(@team) %>
43
43
  <%= destroy_scholarship_team_membership_link(current_user.membership_of_scholarship_team(@team)) %>
44
44
  <% elsif can?(:create, Scholarship::TeamMembership) %>
@@ -1,3 +1,3 @@
1
1
  module VoluntaryScholarship
2
- VERSION = "0.0.1"
2
+ VERSION = '0.1.0'
3
3
  end
metadata CHANGED
@@ -1,359 +1,291 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voluntary_scholarship
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Mathias Gawlista
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-03-22 00:00:00.000000000 Z
11
+ date: 2015-04-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: voluntary
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: 0.2.0
19
+ version: 0.3.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: 0.2.0
26
+ version: 0.3.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bitmask_attributes
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: 1.0.0
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: 1.0.0
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: letter_opener
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
47
  version: 1.0.0
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
54
  version: 1.0.0
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: oink
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
61
  version: 0.10.1
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
68
  version: 0.10.1
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: awesome_print
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ~>
73
+ - - "~>"
84
74
  - !ruby/object:Gem::Version
85
75
  version: 1.1.0
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ~>
80
+ - - "~>"
92
81
  - !ruby/object:Gem::Version
93
82
  version: 1.1.0
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: rspec-rails
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ~>
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
89
  version: '2.0'
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ~>
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
96
  version: '2.0'
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: capybara
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ~>
101
+ - - "~>"
116
102
  - !ruby/object:Gem::Version
117
103
  version: 1.1.2
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ~>
108
+ - - "~>"
124
109
  - !ruby/object:Gem::Version
125
110
  version: 1.1.2
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: capybara-webkit
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ~>
115
+ - - "~>"
132
116
  - !ruby/object:Gem::Version
133
117
  version: 0.13.0
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ~>
122
+ - - "~>"
140
123
  - !ruby/object:Gem::Version
141
124
  version: 0.13.0
142
- - !ruby/object:Gem::Dependency
143
- name: cucumber
144
- requirement: !ruby/object:Gem::Requirement
145
- none: false
146
- requirements:
147
- - - ~>
148
- - !ruby/object:Gem::Version
149
- version: 1.2.5
150
- type: :development
151
- prerelease: false
152
- version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
- requirements:
155
- - - ~>
156
- - !ruby/object:Gem::Version
157
- version: 1.2.5
158
125
  - !ruby/object:Gem::Dependency
159
126
  name: cucumber-rails-training-wheels
160
127
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
128
  requirements:
163
- - - ~>
129
+ - - "~>"
164
130
  - !ruby/object:Gem::Version
165
131
  version: 1.0.0
166
132
  type: :development
167
133
  prerelease: false
168
134
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
135
  requirements:
171
- - - ~>
136
+ - - "~>"
172
137
  - !ruby/object:Gem::Version
173
138
  version: 1.0.0
174
139
  - !ruby/object:Gem::Dependency
175
140
  name: timecop
176
141
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
142
  requirements:
179
- - - ~>
143
+ - - "~>"
180
144
  - !ruby/object:Gem::Version
181
145
  version: 0.6.1
182
146
  type: :development
183
147
  prerelease: false
184
148
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
149
  requirements:
187
- - - ~>
150
+ - - "~>"
188
151
  - !ruby/object:Gem::Version
189
152
  version: 0.6.1
190
153
  - !ruby/object:Gem::Dependency
191
154
  name: factory_girl_rails
192
155
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
156
  requirements:
195
- - - ~>
157
+ - - "~>"
196
158
  - !ruby/object:Gem::Version
197
159
  version: 1.7.0
198
160
  type: :development
199
161
  prerelease: false
200
162
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
163
  requirements:
203
- - - ~>
164
+ - - "~>"
204
165
  - !ruby/object:Gem::Version
205
166
  version: 1.7.0
206
167
  - !ruby/object:Gem::Dependency
207
168
  name: fixture_builder
208
169
  requirement: !ruby/object:Gem::Requirement
209
- none: false
210
170
  requirements:
211
- - - ~>
171
+ - - "~>"
212
172
  - !ruby/object:Gem::Version
213
173
  version: 0.3.3
214
174
  type: :development
215
175
  prerelease: false
216
176
  version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
177
  requirements:
219
- - - ~>
178
+ - - "~>"
220
179
  - !ruby/object:Gem::Version
221
180
  version: 0.3.3
222
- - !ruby/object:Gem::Dependency
223
- name: fuubar
224
- requirement: !ruby/object:Gem::Requirement
225
- none: false
226
- requirements:
227
- - - ~>
228
- - !ruby/object:Gem::Version
229
- version: 1.1.0
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- none: false
234
- requirements:
235
- - - ~>
236
- - !ruby/object:Gem::Version
237
- version: 1.1.0
238
181
  - !ruby/object:Gem::Dependency
239
182
  name: selenium-webdriver
240
183
  requirement: !ruby/object:Gem::Requirement
241
- none: false
242
184
  requirements:
243
- - - ~>
185
+ - - "~>"
244
186
  - !ruby/object:Gem::Version
245
187
  version: 2.22.1
246
188
  type: :development
247
189
  prerelease: false
248
190
  version_requirements: !ruby/object:Gem::Requirement
249
- none: false
250
191
  requirements:
251
- - - ~>
192
+ - - "~>"
252
193
  - !ruby/object:Gem::Version
253
194
  version: 2.22.1
254
195
  - !ruby/object:Gem::Dependency
255
196
  name: spork
256
197
  requirement: !ruby/object:Gem::Requirement
257
- none: false
258
198
  requirements:
259
- - - ~>
199
+ - - "~>"
260
200
  - !ruby/object:Gem::Version
261
201
  version: 1.0rc2
262
202
  type: :development
263
203
  prerelease: false
264
204
  version_requirements: !ruby/object:Gem::Requirement
265
- none: false
266
205
  requirements:
267
- - - ~>
206
+ - - "~>"
268
207
  - !ruby/object:Gem::Version
269
208
  version: 1.0rc2
270
209
  - !ruby/object:Gem::Dependency
271
210
  name: guard-rspec
272
211
  requirement: !ruby/object:Gem::Requirement
273
- none: false
274
212
  requirements:
275
- - - ~>
213
+ - - "~>"
276
214
  - !ruby/object:Gem::Version
277
215
  version: 3.0.2
278
216
  type: :development
279
217
  prerelease: false
280
218
  version_requirements: !ruby/object:Gem::Requirement
281
- none: false
282
219
  requirements:
283
- - - ~>
220
+ - - "~>"
284
221
  - !ruby/object:Gem::Version
285
222
  version: 3.0.2
286
223
  - !ruby/object:Gem::Dependency
287
224
  name: guard-spork
288
225
  requirement: !ruby/object:Gem::Requirement
289
- none: false
290
226
  requirements:
291
- - - ~>
227
+ - - "~>"
292
228
  - !ruby/object:Gem::Version
293
229
  version: 1.5.1
294
230
  type: :development
295
231
  prerelease: false
296
232
  version_requirements: !ruby/object:Gem::Requirement
297
- none: false
298
233
  requirements:
299
- - - ~>
234
+ - - "~>"
300
235
  - !ruby/object:Gem::Version
301
236
  version: 1.5.1
302
237
  - !ruby/object:Gem::Dependency
303
238
  name: guard-cucumber
304
239
  requirement: !ruby/object:Gem::Requirement
305
- none: false
306
240
  requirements:
307
- - - ~>
241
+ - - "~>"
308
242
  - !ruby/object:Gem::Version
309
243
  version: 1.4.0
310
244
  type: :development
311
245
  prerelease: false
312
246
  version_requirements: !ruby/object:Gem::Requirement
313
- none: false
314
247
  requirements:
315
- - - ~>
248
+ - - "~>"
316
249
  - !ruby/object:Gem::Version
317
250
  version: 1.4.0
318
251
  - !ruby/object:Gem::Dependency
319
252
  name: launchy
320
253
  requirement: !ruby/object:Gem::Requirement
321
- none: false
322
254
  requirements:
323
- - - ~>
255
+ - - "~>"
324
256
  - !ruby/object:Gem::Version
325
257
  version: 2.1.2
326
258
  type: :development
327
259
  prerelease: false
328
260
  version_requirements: !ruby/object:Gem::Requirement
329
- none: false
330
261
  requirements:
331
- - - ~>
262
+ - - "~>"
332
263
  - !ruby/object:Gem::Version
333
264
  version: 2.1.2
334
265
  - !ruby/object:Gem::Dependency
335
266
  name: database_cleaner
336
267
  requirement: !ruby/object:Gem::Requirement
337
- none: false
338
268
  requirements:
339
- - - ~>
269
+ - - "~>"
340
270
  - !ruby/object:Gem::Version
341
271
  version: 0.7.1
342
272
  type: :development
343
273
  prerelease: false
344
274
  version_requirements: !ruby/object:Gem::Requirement
345
- none: false
346
275
  requirements:
347
- - - ~>
276
+ - - "~>"
348
277
  - !ruby/object:Gem::Version
349
278
  version: 0.7.1
350
- description: Scholarship product for crowdsourcing engine voluntary.
279
+ description: 'Plugin for #Crowdsourcing system Voluntary.Software: http://bit.ly/vs-0-1-0'
351
280
  email:
352
281
  - gawlista@gmail.com
353
282
  executables: []
354
283
  extensions: []
355
284
  extra_rdoc_files: []
356
285
  files:
286
+ - LICENSE
287
+ - README.md
288
+ - Rakefile
357
289
  - app/controllers/concerns/scholarship/base_controller.rb
358
290
  - app/controllers/product/scholarship_controller.rb
359
291
  - app/controllers/scholarship/iteration_participations_controller.rb
@@ -424,45 +356,36 @@ files:
424
356
  - db/migrate/20140314154216_create_scholarship_iteration_participations.rb
425
357
  - db/schema.rb
426
358
  - lib/tasks/voluntary_scholarship_tasks.rake
359
+ - lib/voluntary_scholarship.rb
427
360
  - lib/voluntary_scholarship/ability.rb
428
361
  - lib/voluntary_scholarship/concerns/model/has_scholarship_programs.rb
429
362
  - lib/voluntary_scholarship/concerns/model/user/has_scholarship_teams.rb
430
363
  - lib/voluntary_scholarship/engine.rb
431
364
  - lib/voluntary_scholarship/navigation.rb
432
365
  - lib/voluntary_scholarship/version.rb
433
- - lib/voluntary_scholarship.rb
434
- - MIT-LICENSE
435
- - Rakefile
436
- - README.rdoc
437
366
  homepage: http://github.com/volontariat/voluntary_scholarship
438
- licenses: []
367
+ licenses:
368
+ - MIT
369
+ metadata: {}
439
370
  post_install_message:
440
371
  rdoc_options: []
441
372
  require_paths:
442
373
  - lib
443
374
  required_ruby_version: !ruby/object:Gem::Requirement
444
- none: false
445
375
  requirements:
446
- - - ! '>='
376
+ - - ">="
447
377
  - !ruby/object:Gem::Version
448
378
  version: '0'
449
- segments:
450
- - 0
451
- hash: -1425964334356077297
452
379
  required_rubygems_version: !ruby/object:Gem::Requirement
453
- none: false
454
380
  requirements:
455
- - - ! '>='
381
+ - - ">="
456
382
  - !ruby/object:Gem::Version
457
383
  version: '0'
458
- segments:
459
- - 0
460
- hash: -1425964334356077297
461
384
  requirements: []
462
385
  rubyforge_project:
463
- rubygems_version: 1.8.23
386
+ rubygems_version: 2.4.5
464
387
  signing_key:
465
- specification_version: 3
466
- summary: Scholarship product for crowdsourcing engine voluntary.
388
+ specification_version: 4
389
+ summary: Scholarship plugin for crowdsourcing management system Voluntary.Software.
467
390
  test_files: []
468
391
  has_rdoc:
@@ -1,20 +0,0 @@
1
- Copyright 2014 YOURNAME
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +0,0 @@
1
- = VoluntaryScholarship
2
-
3
- This project rocks and uses MIT-LICENSE.