projecter 0.1.3 → 0.1.4

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: 15c4190d421e6827ada523793bdb8b9f1a8e5ea4
4
- data.tar.gz: f0d427b32bab5246a59965c29dd116d5e07aa751
3
+ metadata.gz: ecd94e10333585065047de761fd011cb98337338
4
+ data.tar.gz: 31adeed385bba8a16ca3b5d7a4889cbd169cbd06
5
5
  SHA512:
6
- metadata.gz: 5bf6f6fc4bac85bd28b0adf2c534789dc087dc38828dd36b3e94a250411f4bd2eb2020d143ad8f187096b369586753ed40bdc0fcda9de3343ddb40b274accedf
7
- data.tar.gz: f9cbfedafb7b5b2d661849bf047b0472e6f16e7f9e5dae5389e8ab21cca08612cdcc52a442be7bf37e331653333ec659369de457a50b1eb3fbd580de2bc9c99f
6
+ metadata.gz: eb3522c3d58e73b4cf3dab05425fd3a3da7bade7ce8a2a6858d97d06b95b45f2dbd39d89d748a632bf7749ef0a667dd868e2dd9079c5910a425bfc7e61234f17
7
+ data.tar.gz: bab405e598375edc8aa124f8496ba4306d644ef66469016f33f596e7e120ffd49ec0c8b33765188e09fc20ebd0e66bc5dfc22c6f4aceacc964f3f58e5781ec25
@@ -34,6 +34,7 @@ class ProjecterCLI < Thor
34
34
  lib_templates = {
35
35
  'gemspec.tt' => "#{project}.gemspec",
36
36
  'README.md.tt' => 'README.md',
37
+ 'LICENSE.md.tt' => 'LICENSE.md',
37
38
  'mainlib.rb.tt' => ['lib', "#{project}.rb"],
38
39
  'version.rb.tt' => ['lib', project, 'version.rb'],
39
40
  'spec_helper.rb.tt' => %w(spec spec_helper.rb),
@@ -1,3 +1,3 @@
1
1
  module Projecter
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
@@ -0,0 +1,13 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) <%= Time.now.year -%> <copyright holders>
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.
@@ -6,6 +6,7 @@ require File.expand_path('../lib/<%= config[:project] %>/version', __FILE__)
6
6
  Gem::Specification.new do |gem|
7
7
  gem.authors = ['SET ME']
8
8
  gem.email = ['SET ME']
9
+ gem.licenses = ['MIT']
9
10
  gem.description = 'I am an application stub'
10
11
  gem.summary = 'app stub'
11
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: projecter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Poirier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-13 00:00:00.000000000 Z
11
+ date: 2015-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -282,6 +282,7 @@ files:
282
282
  - spec/lib/commands/create_spec.rb
283
283
  - spec/resources.rb
284
284
  - spec/spec_helper.rb
285
+ - templates/LICENSE.md.tt
285
286
  - templates/README.md.tt
286
287
  - templates/gemspec.tt
287
288
  - templates/mainapp.tt