bundlegem 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/changelog +17 -7
- data/lib/bundlegem/cli/gem.rb +1 -1
- data/lib/bundlegem/version.rb +1 -1
- data/spec/bundlegem_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4653baa15159f5c49ff9050e4897dfb699c79240
|
4
|
+
data.tar.gz: ba6d9857b7f9929b17f21b1ce84422688ab9b0e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6fb4e106aa18111119bbfbf1710be787e42faa5e90342b4fc5d6b30162e027c45704e56f5ab0913300a19f4666522bdf5d626c95c6fa3486d7224342b50d65e
|
7
|
+
data.tar.gz: 71b9d64dc3d67e9f0175414b2b376669d5f82ba940e460a7ff151a451e9b262d661d3c6c44c4f87db1a2cc6f7094345e9403d9e21e3be425a9cf304f83693ebe
|
data/changelog
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
** 0.0.x **
|
2
2
|
- CMD: --newtemplate to start new template
|
3
3
|
- I'll need to write a basic starter template that is educational
|
4
|
+
- Why have more than one built in template? Only one is needed for testing, the rest should
|
5
|
+
be pulled from the web and made easily customizable by the users.
|
4
6
|
|
5
7
|
Completed:
|
6
8
|
- Nothing Yet
|
7
9
|
|
10
|
+
** 0.0.11 **
|
11
|
+
- Bugfix: config[:bundler_version] was listing the version of bundlegem not bundler
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
** 0.0.10 **
|
16
|
+
- Feature: tweaks built-in templates
|
17
|
+
|
8
18
|
|
9
19
|
|
10
20
|
** 0.0.9 **
|
@@ -15,11 +25,11 @@ Completed:
|
|
15
25
|
|
16
26
|
** 0.0.8 **
|
17
27
|
|
18
|
-
- Bugfix: fixes bug where git clone was attempted even when the a clone
|
28
|
+
- Bugfix: fixes bug where git clone was attempted even when the a clone
|
19
29
|
already took place in a prior run
|
20
|
-
- Bugfix: fixes bug where I thought I was using something cool like figaro
|
30
|
+
- Bugfix: fixes bug where I thought I was using something cool like figaro
|
21
31
|
but was not
|
22
|
-
- Bugfix: fixes bug where configuration wasn't loaded before running
|
32
|
+
- Bugfix: fixes bug where configuration wasn't loaded before running
|
23
33
|
--install-best-templates
|
24
34
|
- Bugfix: fixes bug where require pry was left in
|
25
35
|
|
@@ -28,12 +38,12 @@ Completed:
|
|
28
38
|
** 0.0.7 **
|
29
39
|
|
30
40
|
- Feature: Ability to load templates from github via --install-best-templates
|
31
|
-
- Feature: Make each user defined gem have a subfolder that is the exact
|
41
|
+
- Feature: Make each user defined gem have a subfolder that is the exact
|
32
42
|
project structure, so the readme for the gem can exist without fear of it
|
33
43
|
being copied into new projects
|
34
44
|
- Feature: Gem's display names are based on what's specified in their
|
35
45
|
respective root .bundlegem
|
36
|
-
- Feature: Allow better CLI parsing so -t t_name can be the first couple
|
46
|
+
- Feature: Allow better CLI parsing so -t t_name can be the first couple
|
37
47
|
arguments or at the end
|
38
48
|
- Bugfix: cli_gem and c_ext_gem now show up in the list
|
39
49
|
- Bugfix: cli_gem and c_ext_gem had typos fixed
|
@@ -46,7 +56,7 @@ Completed:
|
|
46
56
|
- BUG: Accidentally tracked in a test gem project and fixed tests to not
|
47
57
|
change directory into a test area for creating new gems.
|
48
58
|
- BUG: newgem template didn't have a dot in .gitignore.tt
|
49
|
-
|
59
|
+
|
50
60
|
|
51
61
|
|
52
62
|
** 0.0.5 **
|
@@ -68,7 +78,7 @@ Completed:
|
|
68
78
|
- Raises error if none of the files in the template directory end in .tt
|
69
79
|
- Create even empty folders
|
70
80
|
|
71
|
-
|
81
|
+
|
72
82
|
** 0.0.2 **
|
73
83
|
- Added default gem template 'service'
|
74
84
|
- Better syntax of bundlegem gem_name -t template_name
|
data/lib/bundlegem/cli/gem.rb
CHANGED
data/lib/bundlegem/version.rb
CHANGED
data/spec/bundlegem_spec.rb
CHANGED
@@ -20,7 +20,7 @@ describe Bundlegem do
|
|
20
20
|
|
21
21
|
list_output = Bundlegem.list
|
22
22
|
|
23
|
-
expect(list_output).to eq " PREDEFINED:\n * newgem (default)\n c_extension_gem\n cli_gem\n
|
23
|
+
expect(list_output).to eq " PREDEFINED:\n * newgem (default)\n c_extension_gem\n cli_gem\n\n MISC:\n empty_template\n\n"
|
24
24
|
expect(File.exists?("#{ENV['HOME']}/.bundlegem")).to be true
|
25
25
|
end
|
26
26
|
|