Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 1059 Bytes
1 | $:.unshift(File.join(File.dirname(__FILE__), 'lib')) |
2 | |
3 | require File.join(File.dirname(__FILE__), 'plugit/descriptor') |
4 | require 'rubygems' |
5 | require 'spec/rake/spectask' |
6 | |
7 | task :default => :spec |
8 | |
9 | desc "Run all specs" |
10 | Spec::Rake::SpecTask.new do |t| |
11 | t.spec_files = FileList['spec/**/*_spec.rb'] |
12 | t.spec_opts = ['--options', 'spec/spec.opts'] |
13 | end |
14 | |
15 | begin |
16 | require 'jeweler' |
17 | Jeweler::Tasks.new do |s| |
18 | s.name = 'dataset' |
19 | s.summary = 'A simple API for creating and finding sets of data in your database, built on ActiveRecord.' |
20 | s.email = 'adam@thewilliams.ws' |
21 | s.files = FileList["[A-Z]*", "{lib,tasks}/**/*", "plugit/descriptor.rb"].exclude("tmp") |
22 | s.require_paths = ["lib", "tasks"] |
23 | s.add_dependency('activesupport', '>= 2.3.0') |
24 | s.add_dependency('activerecord', '>= 2.3.0') |
25 | s.homepage = "http://github.com/aiwilliams/dataset" |
26 | s.description = s.summary |
27 | s.authors = ['Adam Williams'] |
28 | end |
29 | rescue LoadError |
30 | puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" |
31 | end |