technicalpickles-jeweler 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.markdown +27 -7
- data/README.markdown +9 -3
- data/Rakefile +30 -24
- data/TODO +2 -2
- data/VERSION.yml +2 -2
- data/bin/jeweler +1 -77
- data/lib/jeweler/commands/build_gem.rb +22 -0
- data/lib/jeweler/commands/install_gem.rb +19 -0
- data/lib/jeweler/commands/release.rb +45 -0
- data/lib/jeweler/commands/validate_gemspec.rb +21 -0
- data/lib/jeweler/commands/version/base.rb +30 -0
- data/lib/jeweler/commands/version/bump_major.rb +13 -0
- data/lib/jeweler/commands/version/bump_minor.rb +12 -0
- data/lib/jeweler/commands/version/bump_patch.rb +14 -0
- data/lib/jeweler/commands/version/write.rb +12 -0
- data/lib/jeweler/commands/write_gemspec.rb +26 -0
- data/lib/jeweler/commands.rb +10 -0
- data/lib/jeweler/{gemspec.rb → gemspec_helper.rb} +7 -1
- data/lib/jeweler/generator/application.rb +45 -0
- data/lib/jeweler/generator/options.rb +64 -0
- data/lib/jeweler/generator.rb +66 -26
- data/lib/jeweler/tasks.rb +11 -29
- data/lib/jeweler/templates/.gitignore +3 -1
- data/lib/jeweler/templates/LICENSE +1 -1
- data/lib/jeweler/templates/README.rdoc +7 -0
- data/lib/jeweler/templates/Rakefile +48 -31
- data/lib/jeweler/templates/bacon/flunking.rb +1 -1
- data/lib/jeweler/templates/bacon/helper.rb +1 -1
- data/lib/jeweler/templates/features/support/env.rb +0 -2
- data/lib/jeweler/templates/micronaut/flunking.rb +7 -0
- data/lib/jeweler/templates/micronaut/helper.rb +17 -0
- data/lib/jeweler/templates/minitest/flunking.rb +1 -1
- data/lib/jeweler/templates/minitest/helper.rb +1 -0
- data/lib/jeweler/templates/rspec/flunking.rb +1 -1
- data/lib/jeweler/templates/rspec/helper.rb +1 -1
- data/lib/jeweler/templates/shoulda/flunking.rb +2 -2
- data/lib/jeweler/templates/shoulda/helper.rb +1 -1
- data/lib/jeweler/templates/testunit/flunking.rb +1 -1
- data/lib/jeweler/templates/testunit/helper.rb +1 -1
- data/lib/jeweler/{version.rb → version_helper.rb} +1 -1
- data/lib/jeweler.rb +59 -141
- data/test/jeweler/commands/test_build_gem.rb +53 -0
- data/{lib/jeweler/templates/features/steps/default_steps.rb → test/jeweler/commands/test_install_gem.rb} +0 -0
- data/test/jeweler/commands/test_release.rb +145 -0
- data/test/jeweler/commands/test_write_gemspec.rb +58 -0
- data/test/jeweler/commands/version/test_bump_major.rb +21 -0
- data/test/jeweler/commands/version/test_bump_minor.rb +19 -0
- data/test/jeweler/commands/version/test_bump_patch.rb +20 -0
- data/test/jeweler/commands/version/test_write.rb +23 -0
- data/test/test_application.rb +109 -0
- data/test/{test_gemspec.rb → test_gemspec_helper.rb} +9 -5
- data/test/test_generator.rb +179 -0
- data/test/test_helper.rb +11 -23
- data/test/test_jeweler.rb +12 -9
- data/test/test_options.rb +90 -0
- data/test/test_tasks.rb +3 -4
- data/test/{test_version.rb → test_version_helper.rb} +16 -16
- metadata +44 -11
- data/lib/jeweler/templates/README +0 -9
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: technicalpickles-jeweler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Nichols
|
@@ -9,11 +9,12 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-03-05 00:00:00 -08:00
|
13
13
|
default_executable: jeweler
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: schacon-git
|
17
|
+
type: :runtime
|
17
18
|
version_requirement:
|
18
19
|
version_requirements: !ruby/object:Gem::Requirement
|
19
20
|
requirements:
|
@@ -27,8 +28,10 @@ executables:
|
|
27
28
|
- jeweler
|
28
29
|
extensions: []
|
29
30
|
|
30
|
-
extra_rdoc_files:
|
31
|
-
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.markdown
|
33
|
+
- ChangeLog.markdown
|
34
|
+
- LICENSE
|
32
35
|
files:
|
33
36
|
- ChangeLog.markdown
|
34
37
|
- LICENSE
|
@@ -38,8 +41,24 @@ files:
|
|
38
41
|
- VERSION.yml
|
39
42
|
- bin/jeweler
|
40
43
|
- lib/jeweler
|
44
|
+
- lib/jeweler/commands
|
45
|
+
- lib/jeweler/commands/build_gem.rb
|
46
|
+
- lib/jeweler/commands/install_gem.rb
|
47
|
+
- lib/jeweler/commands/release.rb
|
48
|
+
- lib/jeweler/commands/validate_gemspec.rb
|
49
|
+
- lib/jeweler/commands/version
|
50
|
+
- lib/jeweler/commands/version/base.rb
|
51
|
+
- lib/jeweler/commands/version/bump_major.rb
|
52
|
+
- lib/jeweler/commands/version/bump_minor.rb
|
53
|
+
- lib/jeweler/commands/version/bump_patch.rb
|
54
|
+
- lib/jeweler/commands/version/write.rb
|
55
|
+
- lib/jeweler/commands/write_gemspec.rb
|
56
|
+
- lib/jeweler/commands.rb
|
41
57
|
- lib/jeweler/errors.rb
|
42
|
-
- lib/jeweler/
|
58
|
+
- lib/jeweler/gemspec_helper.rb
|
59
|
+
- lib/jeweler/generator
|
60
|
+
- lib/jeweler/generator/application.rb
|
61
|
+
- lib/jeweler/generator/options.rb
|
43
62
|
- lib/jeweler/generator.rb
|
44
63
|
- lib/jeweler/tasks.rb
|
45
64
|
- lib/jeweler/templates
|
@@ -48,16 +67,17 @@ files:
|
|
48
67
|
- lib/jeweler/templates/bacon/helper.rb
|
49
68
|
- lib/jeweler/templates/features
|
50
69
|
- lib/jeweler/templates/features/default.feature
|
51
|
-
- lib/jeweler/templates/features/steps
|
52
|
-
- lib/jeweler/templates/features/steps/default_steps.rb
|
53
70
|
- lib/jeweler/templates/features/support
|
54
71
|
- lib/jeweler/templates/features/support/env.rb
|
55
72
|
- lib/jeweler/templates/LICENSE
|
73
|
+
- lib/jeweler/templates/micronaut
|
74
|
+
- lib/jeweler/templates/micronaut/flunking.rb
|
75
|
+
- lib/jeweler/templates/micronaut/helper.rb
|
56
76
|
- lib/jeweler/templates/minitest
|
57
77
|
- lib/jeweler/templates/minitest/flunking.rb
|
58
78
|
- lib/jeweler/templates/minitest/helper.rb
|
59
79
|
- lib/jeweler/templates/Rakefile
|
60
|
-
- lib/jeweler/templates/README
|
80
|
+
- lib/jeweler/templates/README.rdoc
|
61
81
|
- lib/jeweler/templates/rspec
|
62
82
|
- lib/jeweler/templates/rspec/flunking.rb
|
63
83
|
- lib/jeweler/templates/rspec/helper.rb
|
@@ -67,7 +87,7 @@ files:
|
|
67
87
|
- lib/jeweler/templates/testunit
|
68
88
|
- lib/jeweler/templates/testunit/flunking.rb
|
69
89
|
- lib/jeweler/templates/testunit/helper.rb
|
70
|
-
- lib/jeweler/
|
90
|
+
- lib/jeweler/version_helper.rb
|
71
91
|
- lib/jeweler.rb
|
72
92
|
- test/fixtures
|
73
93
|
- test/fixtures/bar
|
@@ -75,13 +95,26 @@ files:
|
|
75
95
|
- test/generators
|
76
96
|
- test/generators/initialization_test.rb
|
77
97
|
- test/jeweler
|
98
|
+
- test/jeweler/commands
|
99
|
+
- test/jeweler/commands/test_build_gem.rb
|
100
|
+
- test/jeweler/commands/test_install_gem.rb
|
101
|
+
- test/jeweler/commands/test_release.rb
|
102
|
+
- test/jeweler/commands/test_write_gemspec.rb
|
103
|
+
- test/jeweler/commands/version
|
104
|
+
- test/jeweler/commands/version/test_bump_major.rb
|
105
|
+
- test/jeweler/commands/version/test_bump_minor.rb
|
106
|
+
- test/jeweler/commands/version/test_bump_patch.rb
|
107
|
+
- test/jeweler/commands/version/test_write.rb
|
78
108
|
- test/shoulda_macros
|
79
109
|
- test/shoulda_macros/jeweler_macros.rb
|
80
|
-
- test/
|
110
|
+
- test/test_application.rb
|
111
|
+
- test/test_gemspec_helper.rb
|
112
|
+
- test/test_generator.rb
|
81
113
|
- test/test_helper.rb
|
82
114
|
- test/test_jeweler.rb
|
115
|
+
- test/test_options.rb
|
83
116
|
- test/test_tasks.rb
|
84
|
-
- test/
|
117
|
+
- test/test_version_helper.rb
|
85
118
|
- test/version_tmp
|
86
119
|
- test/version_tmp/VERSION.yml
|
87
120
|
- lib/jeweler/templates/.gitignore
|