Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rsvp.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
rsvp.js
Commits
8a111c0c
Commit
8a111c0c
authored
Oct 16, 2012
by
Yehuda Katz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Rakefile
parent
efd37c87
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
Rakefile
Rakefile
+25
-1
No files found.
Rakefile
View file @
8a111c0c
...
...
@@ -41,4 +41,28 @@ task :test do
end
end
task
:default
=>
:test
directory
"browser"
file
"browser/rsvp.js"
=>
[
"browser"
,
"lib/rsvp.js"
]
do
library
=
File
.
read
(
"lib/rsvp.js"
)
open
"browser/rsvp.js"
,
"w"
do
|
file
|
file
.
puts
"(function(exports) {
#{
library
}
})(window.RSVP = {});"
end
end
file
"browser/rsvp.min.js"
=>
"browser/rsvp.js"
do
output
=
`cat browser/rsvp.js | uglifyjs`
open
"browser/rsvp.min.js"
,
"w"
do
|
file
|
file
.
puts
output
end
end
task
:dist
=>
[
"browser/rsvp.js"
,
"browser/rsvp.min.js"
]
task
:push
=>
:dist
do
sh
"git add browser/rsvp.js browser/rsvp.min.js"
sh
"git commit -m 'Updates build artifacts'"
end
task
:default
=>
[
:browser
,
:test
]
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