aspen 0.2.0 → 0.2.1
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 +6 -14
- data/config/environment.rb +1 -1
- data/lib/aspen.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
NDQ1YTcxMTY0MGRkM2EwZjA5NmFkOWNhNzM4MWUxMTIyMTQyNTk1Zjk5Nzc0
|
|
10
|
-
ZmViYjgyODhjOTQ4YzYyNzk1MmYxOGNlMDM2M2VjNGM0NjRmNGIzYzBkZTQ1
|
|
11
|
-
YmY1NzM5MGFkZDE1YTk4ODdjN2ZjYzJlM2I2ZDI3NGRhNTc2NGI=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MTVmM2EyOGI1ZTA4ZDg0MzAyNzNjYWU1OWIyZDE0YmQ5Mzk5MjkxNzNhMWQ2
|
|
14
|
-
YTYwNWJhZmIyMjNhY2RlODYxMmE2OTdkMDBhMGViNDI2ZWViYzIyNDc5NTA5
|
|
15
|
-
NGQ2MmM0YzYzZTQzOGU4NmEzNmM0NmEyYmJhYTVlZDk4ZTBkMWU=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c9c25694223ac09797bbc8dc06eed68771068eef
|
|
4
|
+
data.tar.gz: 775ef45182dc0c97572a720b601f45dcf4749b46
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f2a8387190875a2a782252447618347364ecec8598ff9ecb38df8611efe19ccb72e74351d2711c5074ac9116efeef592ee53beb419e5c4ce895c36ce2deee7cd
|
|
7
|
+
data.tar.gz: edadec24226905b68fae2b073a046348a9c1b2c673844db51475bb925f25679618c8ef6cd1cf07426775e59a400d2c2efa5a057fd71a15b52e0d3937c6c1a05d
|
data/config/environment.rb
CHANGED
|
@@ -8,7 +8,7 @@ AspenRoot = File.expand_path(File.dirname(__FILE__)).gsub("/config", "")
|
|
|
8
8
|
|
|
9
9
|
def get_reqs(current_dir)
|
|
10
10
|
Dir.foreach(current_dir) do |file|
|
|
11
|
-
next if file.start_with?('.') || file.start_with?("environment.rb")
|
|
11
|
+
next if file.start_with?('.') || file.start_with?("environment.rb") || file.end_with?('spec.rb')
|
|
12
12
|
if File.directory?("#{current_dir}/#{file}")
|
|
13
13
|
next if file.start_with?("templates")
|
|
14
14
|
get_reqs("#{current_dir}/#{file}")
|
data/lib/aspen.rb
CHANGED
|
@@ -11,7 +11,7 @@ class Aspen
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
@@opts = Trollop::with_standard_exception_handling @@args do
|
|
14
|
-
raise Trollop::HelpNeeded if ARGV.empty? || !ARGV[0].start_with?("-")
|
|
14
|
+
raise Trollop::HelpNeeded if ARGV.empty? || !ARGV[0].start_with?("-n")
|
|
15
15
|
@@args.parse ARGV
|
|
16
16
|
end
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aspen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Logan Hasson
|
|
@@ -11,48 +11,48 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-10-
|
|
14
|
+
date: 2013-10-17 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rspec
|
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
|
19
19
|
requirements:
|
|
20
|
-
- -
|
|
20
|
+
- - '>='
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '0'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- -
|
|
27
|
+
- - '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: git
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
33
33
|
requirements:
|
|
34
|
-
- -
|
|
34
|
+
- - '>='
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
36
|
version: '0'
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
40
40
|
requirements:
|
|
41
|
-
- -
|
|
41
|
+
- - '>='
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
43
|
version: '0'
|
|
44
44
|
- !ruby/object:Gem::Dependency
|
|
45
45
|
name: trollop
|
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
|
47
47
|
requirements:
|
|
48
|
-
- -
|
|
48
|
+
- - '>='
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
50
|
version: '0'
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
54
54
|
requirements:
|
|
55
|
-
- -
|
|
55
|
+
- - '>='
|
|
56
56
|
- !ruby/object:Gem::Version
|
|
57
57
|
version: '0'
|
|
58
58
|
description: Sets up a directory tree for coding projects based on customizable templates
|
|
@@ -79,17 +79,17 @@ require_paths:
|
|
|
79
79
|
- lib
|
|
80
80
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
|
-
- -
|
|
82
|
+
- - '>='
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- -
|
|
87
|
+
- - '>='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
91
|
rubyforge_project:
|
|
92
|
-
rubygems_version: 2.0.
|
|
92
|
+
rubygems_version: 2.0.3
|
|
93
93
|
signing_key:
|
|
94
94
|
specification_version: 4
|
|
95
95
|
summary: aspen gem
|