Skip to content

Commit

Permalink
ready
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianmandrup committed Nov 24, 2011
1 parent a2b6197 commit 69277ca
Show file tree
Hide file tree
Showing 3 changed files with 183 additions and 3 deletions.
10 changes: 8 additions & 2 deletions Gemfile
@@ -1,7 +1,13 @@
source :rubygems source :rubygems


gem 'rails', '>= 3.1' group :default do
gem 'cantango-core' gem 'rails', '>= 3.1'
gem 'sugar-high', '>= 0.6.0'
gem 'sweetloader', '~> 0.1.0'
gem 'hashie'

gem 'cantango-core', :git => 'git://github.com/kristianmandrup/cantango-core.git'
end


group :development do group :development do
gem "bundler", ">= 1.1.rc" gem "bundler", ">= 1.1.rc"
Expand Down
163 changes: 163 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,163 @@
GIT
remote: git://github.com/kristianmandrup/cantango-core.git
revision: 500101d5ccdc64bf5e4eaaa17f035b4babd6a2a7
specs:
cantango-core (1.0.0.beta1)
cancan (>= 1.4)
hashie
rails (>= 3.0.1)
sugar-high (>= 0.6.0)
sweetloader (~> 0.1.0)

GEM
remote: http://rubygems.org/
specs:
actionmailer (3.1.3)
actionpack (= 3.1.3)
mail (~> 2.3.0)
actionpack (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
erubis (~> 2.7.0)
i18n (~> 0.6)
rack (~> 1.3.5)
rack-cache (~> 1.1)
rack-mount (~> 0.8.2)
rack-test (~> 0.6.1)
sprockets (~> 2.0.3)
activemodel (3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
arel (~> 2.2.1)
tzinfo (~> 0.3.29)
activeresource (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
activesupport (3.1.3)
multi_json (~> 1.0)
arel (2.2.1)
builder (3.0.0)
cancan (1.6.7)
colorize (0.5.8)
cutter (0.8.2)
activesupport (>= 2.3.5)
colorize (>= 0.5)
database_cleaner (0.7.0)
diff-lcs (1.1.3)
dkastner-moneta (1.2.0)
erubis (2.7.0)
factory_girl (2.3.1)
activesupport
file-tail (1.0.7)
tins (~> 0.3)
forgery (0.5.0)
git (1.2.5)
hashie (1.2.0)
hike (1.2.1)
i18n (0.6.0)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
json (1.6.1)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.17.2)
multi_json (1.0.3)
polyglot (0.3.3)
rack (1.3.5)
rack-cache (1.1)
rack (>= 0.4)
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-ssl (1.3.2)
rack
rack-test (0.6.1)
rack (>= 1.0)
rails (3.1.3)
actionmailer (= 3.1.3)
actionpack (= 3.1.3)
activerecord (= 3.1.3)
activeresource (= 3.1.3)
activesupport (= 3.1.3)
bundler (~> 1.0)
railties (= 3.1.3)
railties (3.1.3)
actionpack (= 3.1.3)
activesupport (= 3.1.3)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (0.9.2.2)
rcov (0.9.11)
rdoc (3.11)
json (~> 1.4)
require_all (1.2.0)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)
ruby2ruby (1.3.1)
ruby_parser (~> 2.0)
sexp_processor (~> 3.0)
ruby_parser (2.3.1)
sexp_processor (~> 3.0)
sexp_processor (3.0.8)
sourcify (0.5.0)
file-tail (>= 1.0.5)
ruby2ruby (>= 1.2.5)
ruby_parser (>= 2.0.5)
sexp_processor (>= 3.0.5)
spork (0.8.5)
sprockets (2.0.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.4)
sugar-high (0.6.0)
activesupport (>= 3.0.1)
sweetloader (0.1.1)
activesupport (>= 3.0.1)
i18n
thor (0.14.6)
tilt (1.3.3)
tins (0.3.2)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.31)

PLATFORMS
ruby

DEPENDENCIES
bundler (>= 1.1.rc)
cantango-core!
cutter
database_cleaner
dkastner-moneta (>= 1.0)
factory_girl
forgery
hashie
jeweler (>= 1.6.4)
rails (>= 3.1)
rcov
require_all (~> 1.2.0)
rspec (>= 2.6.0)
sourcify
spork
sqlite3
sugar-high (>= 0.6.0)
sweetloader (~> 0.1.0)
13 changes: 12 additions & 1 deletion lib/cantango/roles.rb
@@ -1 +1,12 @@
require 'cantango/configuration' require 'sugar-high/array'
require 'sugar-high/blank'
require 'hashie'
require 'sweetloader'

require 'cantango/core'

AutoLoader.namespaces = {:CanTango => 'cantango'}

module CanTango
autoload_modules :Configuration, :Filter, :Helpers
end

0 comments on commit 69277ca

Please sign in to comment.