Sha256: 829c19fa424f0970815893c47753491a04464974a994a1cc70c06aef10626481
Contents?: true
Size: 943 Bytes
Versions: 2
Compression:
Stored size: 943 Bytes
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' require 'emergent_core' depend_on 'rubigen', '1.4.0' depend_on 'restfulx', '1.2.0' task :default => 'spec:run' PROJ.name = 'emergent-core' PROJ.summary = 'Emergent Flex Application Generator' PROJ.authors = 'Lance Pollard' PROJ.email = 'lancejpollard@gmail.com' PROJ.url = 'http://wiki.github.com/viatropos/emergent_core' PROJ.version = EmergentCore::VERSION PROJ.rubyforge.name = 'emergent-core' PROJ.executables = ['bin/emergent'] PROJ.readme_file = 'README.rdoc' PROJ.spec.opts << '--color' PROJ.exclude << %w(.DS_Store .gitignore .log, .sqlite3) # EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
emergent-core-0.1.01 | Rakefile |
emergent-core-0.1.02 | Rakefile |