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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b3f872d489dd650a28de1c63a08811d517730bd4
4
- data.tar.gz: 122dbfd04fdeb5daf3760c04616543a334467be8
3
+ metadata.gz: 4653baa15159f5c49ff9050e4897dfb699c79240
4
+ data.tar.gz: ba6d9857b7f9929b17f21b1ce84422688ab9b0e9
5
5
  SHA512:
6
- metadata.gz: 32d6e0755a9ff109194f776ffedfa355c9490f3c2b4e54b9d1482ce43c971ebddaaa1c336ea05ee1b8e38c86bc6f63c60a068a3b00e5b9c86359a636493b50ba
7
- data.tar.gz: cd202e82a1c0f846f8aa18997770c71a0076f8ad37e960473282f55ddbc1fc7ebb428846a256e1a06559d47533ad2b4a1756206337f221633f6caa011be94468
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
@@ -176,7 +176,7 @@ module Bundlegem
176
176
 
177
177
 
178
178
  def bundler_dependency_version
179
- v = Gem::Version.new(Bundlegem::VERSION)
179
+ v = Gem::Version.new(Bundler::VERSION)
180
180
  req = v.segments[0..1]
181
181
  req << 'a' if v.prerelease?
182
182
  req.join(".")
@@ -1,3 +1,3 @@
1
1
  module Bundlegem
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -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 service\n\n MISC:\n empty_template\n\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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundlegem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - TheNotary