jeweler 0.10.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.markdown +64 -0
- data/LICENSE +20 -0
- data/README.markdown +164 -0
- data/Rakefile +89 -0
- data/TODO +11 -0
- data/VERSION.yml +4 -0
- data/bin/jeweler +8 -0
- data/lib/jeweler.rb +154 -0
- data/lib/jeweler/commands.rb +12 -0
- data/lib/jeweler/commands/build_gem.rb +31 -0
- data/lib/jeweler/commands/install_gem.rb +26 -0
- data/lib/jeweler/commands/release.rb +59 -0
- data/lib/jeweler/commands/release_to_rubyforge.rb +51 -0
- data/lib/jeweler/commands/setup_rubyforge.rb +38 -0
- data/lib/jeweler/commands/validate_gemspec.rb +30 -0
- data/lib/jeweler/commands/version/base.rb +41 -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 +39 -0
- data/lib/jeweler/errors.rb +20 -0
- data/lib/jeweler/gemspec_helper.rb +51 -0
- data/lib/jeweler/generator.rb +347 -0
- data/lib/jeweler/generator/application.rb +45 -0
- data/lib/jeweler/generator/options.rb +68 -0
- data/lib/jeweler/tasks.rb +119 -0
- data/lib/jeweler/templates/.document +5 -0
- data/lib/jeweler/templates/.gitignore +5 -0
- data/lib/jeweler/templates/LICENSE +20 -0
- data/lib/jeweler/templates/README.rdoc +7 -0
- data/lib/jeweler/templates/Rakefile +125 -0
- data/lib/jeweler/templates/bacon/flunking.rb +7 -0
- data/lib/jeweler/templates/bacon/helper.rb +8 -0
- data/lib/jeweler/templates/features/default.feature +9 -0
- data/lib/jeweler/templates/features/support/env.rb +11 -0
- 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 +7 -0
- data/lib/jeweler/templates/minitest/helper.rb +11 -0
- data/lib/jeweler/templates/rspec/flunking.rb +7 -0
- data/lib/jeweler/templates/rspec/helper.rb +9 -0
- data/lib/jeweler/templates/shoulda/flunking.rb +7 -0
- data/lib/jeweler/templates/shoulda/helper.rb +10 -0
- data/lib/jeweler/templates/testunit/flunking.rb +7 -0
- data/lib/jeweler/templates/testunit/helper.rb +9 -0
- data/lib/jeweler/version_helper.rb +83 -0
- data/test/fixtures/bar/VERSION.yml +4 -0
- data/test/fixtures/existing-project-with-version/LICENSE +20 -0
- data/test/fixtures/existing-project-with-version/README.rdoc +7 -0
- data/test/fixtures/existing-project-with-version/Rakefile +82 -0
- data/test/fixtures/existing-project-with-version/VERSION.yml +4 -0
- data/test/fixtures/existing-project-with-version/existing-project-with-version.gemspec +29 -0
- data/test/fixtures/existing-project-with-version/lib/existing_project_with_version.rb +0 -0
- data/test/fixtures/existing-project-with-version/test/existing_project_with_version_test.rb +7 -0
- data/test/fixtures/existing-project-with-version/test/test_helper.rb +10 -0
- data/test/geminstaller.yml +12 -0
- data/test/generators/initialization_test.rb +146 -0
- data/test/jeweler/commands/test_build_gem.rb +72 -0
- data/test/jeweler/commands/test_install_gem.rb +21 -0
- data/test/jeweler/commands/test_release.rb +180 -0
- data/test/jeweler/commands/test_release_to_rubyforge.rb +157 -0
- data/test/jeweler/commands/test_setup_rubyforge.rb +88 -0
- data/test/jeweler/commands/test_validate_gemspec.rb +27 -0
- data/test/jeweler/commands/test_write_gemspec.rb +92 -0
- data/test/jeweler/commands/version/test_base.rb +32 -0
- data/test/jeweler/commands/version/test_bump_major.rb +22 -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/shoulda_macros/jeweler_macros.rb +35 -0
- data/test/test_application.rb +113 -0
- data/test/test_gemspec_helper.rb +36 -0
- data/test/test_generator.rb +183 -0
- data/test/test_helper.rb +118 -0
- data/test/test_jeweler.rb +177 -0
- data/test/test_options.rb +96 -0
- data/test/test_tasks.rb +41 -0
- data/test/test_version_helper.rb +115 -0
- data/test/version_tmp/VERSION.yml +4 -0
- metadata +171 -0
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
class Jeweler
|
4
|
+
class VersionHelper
|
5
|
+
attr_accessor :base_dir
|
6
|
+
attr_reader :major, :minor, :patch
|
7
|
+
|
8
|
+
def initialize(base_dir)
|
9
|
+
self.base_dir = base_dir
|
10
|
+
|
11
|
+
if File.exists?(yaml_path)
|
12
|
+
parse_yaml
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def bump_major
|
17
|
+
@major += 1
|
18
|
+
@minor = 0
|
19
|
+
@patch = 0
|
20
|
+
end
|
21
|
+
|
22
|
+
def bump_minor
|
23
|
+
@minor += 1
|
24
|
+
@patch = 0
|
25
|
+
end
|
26
|
+
|
27
|
+
def bump_patch
|
28
|
+
@patch += 1
|
29
|
+
end
|
30
|
+
|
31
|
+
def update_to(major, minor, patch)
|
32
|
+
@major = major
|
33
|
+
@minor = minor
|
34
|
+
@patch = patch
|
35
|
+
end
|
36
|
+
|
37
|
+
def write
|
38
|
+
File.open(yaml_path, 'w+') do |f|
|
39
|
+
YAML.dump(self.to_hash, f)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def to_s
|
44
|
+
"#{major}.#{minor}.#{patch}"
|
45
|
+
end
|
46
|
+
|
47
|
+
def to_hash
|
48
|
+
{
|
49
|
+
:major => major,
|
50
|
+
:minor => minor,
|
51
|
+
:patch => patch
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
def refresh
|
56
|
+
parse_yaml
|
57
|
+
end
|
58
|
+
|
59
|
+
def yaml_path
|
60
|
+
denormalized_path = File.join(@base_dir, 'VERSION.yml')
|
61
|
+
absolute_path = File.expand_path(denormalized_path)
|
62
|
+
absolute_path.gsub(Dir.getwd + File::SEPARATOR, '')
|
63
|
+
end
|
64
|
+
|
65
|
+
protected
|
66
|
+
|
67
|
+
def parse_yaml
|
68
|
+
yaml = read_yaml
|
69
|
+
@major = (yaml['major'] || yaml[:major]).to_i
|
70
|
+
@minor = (yaml['minor'] || yaml[:minor]).to_i
|
71
|
+
@patch = (yaml['patch'] || yaml[:patch]).to_i
|
72
|
+
end
|
73
|
+
|
74
|
+
def read_yaml
|
75
|
+
if File.exists?(yaml_path)
|
76
|
+
YAML.load_file(yaml_path)
|
77
|
+
else
|
78
|
+
raise VersionYmlError, "#{yaml_path} does not exist!"
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Josh Nichols
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,82 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "existing-project-with-version"
|
8
|
+
gem.summary = %Q{TODO}
|
9
|
+
gem.email = "josh@technicalpickles.com"
|
10
|
+
gem.homepage = "http://github.com/technicalpickles/existing-project-with-version"
|
11
|
+
gem.authors = ["Josh Nichols"]
|
12
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
13
|
+
end
|
14
|
+
rescue LoadError
|
15
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
16
|
+
end
|
17
|
+
|
18
|
+
require 'rake/testtask'
|
19
|
+
Rake::TestTask.new(:test) do |test|
|
20
|
+
test.libs << 'lib' << 'test'
|
21
|
+
test.pattern = 'test/**/*_test.rb'
|
22
|
+
test.verbose = false
|
23
|
+
end
|
24
|
+
|
25
|
+
begin
|
26
|
+
require 'rcov/rcovtask'
|
27
|
+
Rcov::RcovTask.new do |test|
|
28
|
+
test.libs << 'test'
|
29
|
+
test.pattern = 'test/**/*_test.rb'
|
30
|
+
test.verbose = true
|
31
|
+
end
|
32
|
+
rescue LoadError
|
33
|
+
task :rcov do
|
34
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
task :default => :test
|
40
|
+
|
41
|
+
require 'rake/rdoctask'
|
42
|
+
Rake::RDocTask.new do |rdoc|
|
43
|
+
if File.exist?('VERSION.yml')
|
44
|
+
config = YAML.load(File.read('VERSION.yml'))
|
45
|
+
version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
|
46
|
+
else
|
47
|
+
version = ""
|
48
|
+
end
|
49
|
+
|
50
|
+
rdoc.rdoc_dir = 'rdoc'
|
51
|
+
rdoc.title = "existing-project-with-version #{version}"
|
52
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
53
|
+
rdoc.rdoc_files.include('README*')
|
54
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
55
|
+
end
|
56
|
+
|
57
|
+
# Rubyforge documentation task
|
58
|
+
begin
|
59
|
+
require 'rake/contrib/sshpublisher'
|
60
|
+
namespace :rubyforge do
|
61
|
+
|
62
|
+
desc "Release gem and RDoc documentation to RubyForge"
|
63
|
+
task :release => ["rubyforge:release:gem", "rubyforge:release:docs"]
|
64
|
+
|
65
|
+
namespace :release do
|
66
|
+
desc "Publish RDoc to RubyForge."
|
67
|
+
task :docs => [:rdoc] do
|
68
|
+
config = YAML.load(
|
69
|
+
File.read(File.expand_path('~/.rubyforge/user-config.yml'))
|
70
|
+
)
|
71
|
+
|
72
|
+
host = "#{config['username']}@rubyforge.org"
|
73
|
+
remote_dir = "/var/www/gforge-projects/existing-project-with-version/"
|
74
|
+
local_dir = 'rdoc'
|
75
|
+
|
76
|
+
Rake::SshDirPublisher.new(host, remote_dir, local_dir).upload
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
rescue LoadError
|
81
|
+
puts "Rake SshDirPublisher is unavailable or your rubyforge environment is not configured."
|
82
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{existing-project-with-version}
|
5
|
+
s.version = "1.5.3"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Josh Nichols"]
|
9
|
+
s.date = %q{2009-03-13}
|
10
|
+
s.email = %q{josh@technicalpickles.com}
|
11
|
+
s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
|
12
|
+
s.files = ["README.rdoc", "VERSION.yml", "lib/existing_project_with_version.rb", "test/existing_project_with_version_test.rb", "test/test_helper.rb", "LICENSE"]
|
13
|
+
s.has_rdoc = true
|
14
|
+
s.homepage = %q{http://github.com/technicalpickles/existing-project-with-version}
|
15
|
+
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
|
16
|
+
s.require_paths = ["lib"]
|
17
|
+
s.rubygems_version = %q{1.3.1}
|
18
|
+
s.summary = %q{TODO}
|
19
|
+
|
20
|
+
if s.respond_to? :specification_version then
|
21
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
22
|
+
s.specification_version = 2
|
23
|
+
|
24
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
25
|
+
else
|
26
|
+
end
|
27
|
+
else
|
28
|
+
end
|
29
|
+
end
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Dependencies required to run the test suite
|
2
|
+
gems:
|
3
|
+
- name: rspec
|
4
|
+
version: '~> 1.1.12'
|
5
|
+
- name: Shoulda
|
6
|
+
version: '~> 1.2.0'
|
7
|
+
- name: ruby-debug
|
8
|
+
version: '~> 0.10.3'
|
9
|
+
- name: rr
|
10
|
+
version: '~> 0.7.1'
|
11
|
+
- name: mhennemeyer-output_catcher
|
12
|
+
version: '~> 1.0.1'
|
@@ -0,0 +1,146 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
2
|
+
|
3
|
+
class JewelerGeneratorInitializerTest < Test::Unit::TestCase
|
4
|
+
context "given a nil github repo name" do
|
5
|
+
setup do
|
6
|
+
@block = lambda { Jeweler::Generator.new(nil) }
|
7
|
+
end
|
8
|
+
|
9
|
+
should "raise an error" do
|
10
|
+
assert_raise Jeweler::NoGitHubRepoNameGiven do
|
11
|
+
@block.call
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
context "without git user's name set" do
|
17
|
+
setup do
|
18
|
+
Jeweler::Generator.any_instance.stubs(:read_git_config).returns({'user.email' => 'bar@example.com'})
|
19
|
+
end
|
20
|
+
|
21
|
+
context "instantiating new generator" do
|
22
|
+
setup do
|
23
|
+
@block = lambda { Jeweler::Generator.new('the-perfect-gem')}
|
24
|
+
end
|
25
|
+
|
26
|
+
should "raise no git user name exception" do
|
27
|
+
assert_raise Jeweler::NoGitUserName do
|
28
|
+
@block.call
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "without git user's email set" do
|
35
|
+
setup do
|
36
|
+
Jeweler::Generator.any_instance.stubs(:read_git_config).returns({'user.name' => 'foo'})
|
37
|
+
end
|
38
|
+
|
39
|
+
context "instantiating new generator" do
|
40
|
+
setup do
|
41
|
+
@block = lambda { Jeweler::Generator.new('the-perfect-gem')}
|
42
|
+
end
|
43
|
+
|
44
|
+
should "raise no git user name exception" do
|
45
|
+
assert_raise Jeweler::NoGitUserEmail do
|
46
|
+
@block.call
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "without github username set" do
|
53
|
+
setup do
|
54
|
+
Jeweler::Generator.any_instance.stubs(:read_git_config).
|
55
|
+
returns({'user.email' => 'bar@example.com', 'user.name' => 'foo'})
|
56
|
+
end
|
57
|
+
|
58
|
+
context "instantiating new generator" do
|
59
|
+
setup do
|
60
|
+
@block = lambda { Jeweler::Generator.new('the-perfect-gem')}
|
61
|
+
end
|
62
|
+
|
63
|
+
should "raise no github user exception" do
|
64
|
+
assert_raise Jeweler::NoGitHubUser do
|
65
|
+
@block.call
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
context "without github token set" do
|
72
|
+
setup do
|
73
|
+
Jeweler::Generator.any_instance.stubs(:read_git_config).
|
74
|
+
returns({'user.email' => 'bar@example.com', 'user.name' => 'foo', 'github.user' => 'technicalpickles'})
|
75
|
+
end
|
76
|
+
|
77
|
+
context "instantiating new generator" do
|
78
|
+
setup do
|
79
|
+
@block = lambda { Jeweler::Generator.new('the-perfect-gem')}
|
80
|
+
end
|
81
|
+
|
82
|
+
should "raise no github user exception" do
|
83
|
+
assert_raise Jeweler::NoGitHubToken do
|
84
|
+
@block.call
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
context "with valid git user configuration" do
|
91
|
+
setup do
|
92
|
+
Jeweler::Generator.any_instance.stubs(:read_git_config).
|
93
|
+
returns({'user.name' => 'foo', 'user.email' => 'bar@example.com', 'github.user' => 'technicalpickles', 'github.token' => 'zomgtoken'})
|
94
|
+
end
|
95
|
+
|
96
|
+
context "for technicalpickle's the-perfect-gem repository" do
|
97
|
+
setup do
|
98
|
+
@generator = Jeweler::Generator.new('the-perfect-gem')
|
99
|
+
end
|
100
|
+
|
101
|
+
should "assign 'foo' to user's name" do
|
102
|
+
assert_equal 'foo', @generator.user_name
|
103
|
+
end
|
104
|
+
|
105
|
+
should "assign 'bar@example.com to user's email" do
|
106
|
+
assert_equal 'bar@example.com', @generator.user_email
|
107
|
+
end
|
108
|
+
|
109
|
+
should "assign github remote" do
|
110
|
+
assert_equal 'git@github.com:technicalpickles/the-perfect-gem.git', @generator.github_remote
|
111
|
+
end
|
112
|
+
|
113
|
+
should "determine github username as technicalpickles" do
|
114
|
+
assert_equal 'technicalpickles', @generator.github_username
|
115
|
+
end
|
116
|
+
|
117
|
+
should "determine github repository name as the-perfect-gem" do
|
118
|
+
assert_equal 'the-perfect-gem', @generator.github_repo_name
|
119
|
+
end
|
120
|
+
|
121
|
+
should "determine github url as http://github.com/technicalpickles/the-perfect-gem" do
|
122
|
+
assert_equal 'http://github.com/technicalpickles/the-perfect-gem', @generator.github_url
|
123
|
+
end
|
124
|
+
|
125
|
+
should "determine target directory as the same as the github repository name" do
|
126
|
+
assert_equal @generator.github_repo_name, @generator.target_dir
|
127
|
+
end
|
128
|
+
|
129
|
+
should "determine lib directory as being inside the target directory" do
|
130
|
+
assert_equal File.join(@generator.target_dir, 'lib'), @generator.lib_dir
|
131
|
+
end
|
132
|
+
|
133
|
+
should "determine test directory as being inside the target directory" do
|
134
|
+
assert_equal File.join(@generator.target_dir, 'test'), @generator.test_dir
|
135
|
+
end
|
136
|
+
|
137
|
+
should "determine constant name as ThePerfectGem" do
|
138
|
+
assert_equal 'ThePerfectGem', @generator.constant_name
|
139
|
+
end
|
140
|
+
|
141
|
+
should "determine file name prefix as the_perfect_gem" do
|
142
|
+
assert_equal 'the_perfect_gem', @generator.file_name_prefix
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# not sure why I need to use this form instead of just require 'test_helper'
|
2
|
+
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'test_helper'))
|
3
|
+
|
4
|
+
class Jeweler
|
5
|
+
module Commands
|
6
|
+
class TestBuildGem < Test::Unit::TestCase
|
7
|
+
|
8
|
+
context "after running" do
|
9
|
+
setup do
|
10
|
+
@gemspec = Object.new
|
11
|
+
stub(@gemspec).file_name { 'zomg-1.2.3.gem' }
|
12
|
+
|
13
|
+
@gemspec_helper = Object.new
|
14
|
+
stub(@gemspec_helper).parse { @gemspec }
|
15
|
+
|
16
|
+
@builder = Object.new
|
17
|
+
stub(Gem::Builder).new { @builder }
|
18
|
+
stub(@builder).build { 'zomg-1.2.3.gem' }
|
19
|
+
|
20
|
+
@file_utils = Object.new
|
21
|
+
stub(@file_utils).mkdir_p './pkg'
|
22
|
+
stub(@file_utils).mv './zomg-1.2.3.gem', './pkg'
|
23
|
+
|
24
|
+
@base_dir = '.'
|
25
|
+
|
26
|
+
@command = Jeweler::Commands::BuildGem.new
|
27
|
+
@command.base_dir = @base_dir
|
28
|
+
@command.file_utils = @file_utils
|
29
|
+
@command.gemspec_helper = @gemspec_helper
|
30
|
+
|
31
|
+
@command.run
|
32
|
+
end
|
33
|
+
|
34
|
+
should "call gemspec helper's parse" do
|
35
|
+
assert_received(@gemspec_helper) {|gemspec_helper| gemspec_helper.parse }
|
36
|
+
end
|
37
|
+
|
38
|
+
should "build from parsed gemspec" do
|
39
|
+
assert_received(Gem::Builder) {|builder_class| builder_class.new(@gemspec) }
|
40
|
+
assert_received(@builder) {|builder| builder.build }
|
41
|
+
end
|
42
|
+
|
43
|
+
should 'make package directory' do
|
44
|
+
assert_received(@file_utils) {|file_utils| file_utils.mkdir_p './pkg'}
|
45
|
+
end
|
46
|
+
|
47
|
+
should 'move built gem into package directory' do
|
48
|
+
assert_received(@file_utils) {|file_utils| file_utils.mv './zomg-1.2.3.gem', './pkg'}
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
build_command_context "build for jeweler" do
|
53
|
+
setup do
|
54
|
+
@command = Jeweler::Commands::BuildGem.build_for(@jeweler)
|
55
|
+
end
|
56
|
+
|
57
|
+
should "assign base_dir" do
|
58
|
+
assert_same @base_dir, @jeweler.base_dir
|
59
|
+
end
|
60
|
+
|
61
|
+
should "assign gemspec_helper" do
|
62
|
+
assert_same @gemspec_helper, @jeweler.gemspec_helper
|
63
|
+
end
|
64
|
+
|
65
|
+
should "return BuildGem" do
|
66
|
+
assert_kind_of Jeweler::Commands::BuildGem, @command
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|