Skip to content

Commit

Permalink
first alpha version
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianmandrup committed Aug 12, 2012
1 parent 0c10ef2 commit da20366
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 12 deletions.
16 changes: 16 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
source "http://rubygems.org"

gem 'cantango-config'
# gem 'cantango-permits'

group :development do
gem "rspec", ">= 2.8"
gem "bundler", ">= 1.1.0"
gem "jeweler", ">= 1.8.4"
gem "simplecov", ">= 0.5"
end

group :test do
gem "rspec", ">= 2.8"
gem 'forgery'
gem 'sqlite3'
# Data
gem 'database_cleaner'
gem 'factory_girl'

# Specs
gem 'spork'

# Debug and performance tests
gem 'cutter'
end
15 changes: 15 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,15 @@ GEM
rails (>= 3.0.1)
sugar-high (>= 0.6.0)
sweetloader (~> 0.1.5)
colorize (0.5.8)
cutter (0.8.8)
colorize (>= 0.5)
database_cleaner (0.8.0)
diff-lcs (1.1.3)
erubis (2.7.0)
factory_girl (3.6.0)
activesupport (>= 3.0.0)
forgery (0.5.0)
git (1.2.5)
hashie (1.2.0)
hike (1.2.1)
Expand Down Expand Up @@ -100,10 +107,12 @@ GEM
multi_json (~> 1.0)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)
spork (0.8.5)
sprockets (2.1.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.6)
sugar-high (0.7.0)
sweetloader (0.1.6)
activesupport (>= 3.0.1)
Expand All @@ -121,6 +130,12 @@ PLATFORMS
DEPENDENCIES
bundler (>= 1.1.0)
cantango-config
cutter
database_cleaner
factory_girl
forgery
jeweler (>= 1.8.4)
rspec (>= 2.8)
simplecov (>= 0.5)
spork
sqlite3
14 changes: 3 additions & 11 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,14 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
require 'rdoc/task'
RDoc::Task.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "cantango-cache #{version}"
rdoc.title = "cantango-permits #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.0
0.1.0

0 comments on commit da20366

Please sign in to comment.