Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
f47a4b5a
Commit
f47a4b5a
authored
May 10, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added gem build task, gemspec cleans first
parent
037db684
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
Rakefile
+7
-1
No files found.
Rakefile
View file @
f47a4b5a
...
...
@@ -42,6 +42,7 @@ task :clean do |t|
FileUtils
.
rm_rf
"pkg"
FileUtils
.
rm
"test/debug.log"
rescue
nil
FileUtils
.
rm
"test/paperclip.db"
rescue
nil
Dir
.
glob
(
"paperclip-*.gem"
).
each
{
|
f
|
FileUtils
.
rm
f
}
end
spec
=
Gem
::
Specification
.
new
do
|
s
|
...
...
@@ -69,8 +70,13 @@ spec = Gem::Specification.new do |s|
end
desc
"Generate a gemspec file for GitHub"
task
:gemspec
do
task
:gemspec
=>
:clean
do
File
.
open
(
"
#{
spec
.
name
}
.gemspec"
,
'w'
)
do
|
f
|
f
.
write
spec
.
to_ruby
end
end
desc
"Build the gem into the current directory"
task
:gem
=>
:gemspec
do
`gem build
#{
spec
.
name
}
.gemspec`
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment