Blame view

Rakefile.release 544 Bytes
6686f090   Antonio Terceiro   Support compiling...
1
# This Rakefile is intentionally independent from Rails to it can be used to
a5f1436c   Antonio Terceiro   Add release-relat...
2
3
# handle release-related tasks without having to load the entire Rails
# environment (which is slow, requires a database connection and several other
6686f090   Antonio Terceiro   Support compiling...
4
5
6
# inconveniences).

$: << 'lib'
a5f1436c   Antonio Terceiro   Add release-relat...
7
8
9
require 'noosfero'
require 'noosfero/version'

6686f090   Antonio Terceiro   Support compiling...
10
11
load 'lib/tasks/gettext.rake'
load 'lib/tasks/doc.rake'
a5f1436c   Antonio Terceiro   Add release-relat...
12
load 'lib/tasks/error_messages.rake'
6686f090   Antonio Terceiro   Support compiling...
13
14
load 'lib/tasks/translation.rake'

a5f1436c   Antonio Terceiro   Add release-relat...
15
16
17
load 'lib/tasks/package.rake'
load 'lib/tasks/release.rake'

6686f090   Antonio Terceiro   Support compiling...
18
task :default => 'noosfero:translations:compile'