forked from snusnu/alfred
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
59 lines (46 loc) · 3.12 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'http://rubygems.org'
DATAMAPPER = 'git://github.com/datamapper'
SNUSNU = 'git://github.com/snusnu'
RAILS_VERSION = '~> 3.0.0.beta4'
DM_VERSION = '~> 1.0.0'
DO_VERSION = '~> 0.10.3'
git 'git://github.com/rails/rails.git' do
gem 'activesupport', RAILS_VERSION, :require => 'active_support'
gem 'actionpack', RAILS_VERSION, :require => 'action_pack'
gem 'railties', RAILS_VERSION, :require => 'rails'
end
gem 'dm-core', DM_VERSION, :git => "#{DATAMAPPER}/dm-core.git"
gem 'dm-rails', DM_VERSION, :git => "#{DATAMAPPER}/dm-rails.git"
gem 'dm-active_model', DM_VERSION, :git => "#{DATAMAPPER}/dm-active_model.git"
gem 'dm-migrations', DM_VERSION, :git => "#{DATAMAPPER}/dm-migrations.git"
gem 'dm-do-adapter', DM_VERSION, :git => "#{DATAMAPPER}/dm-do-adapter.git", :require => nil
gem 'dm-mysql-adapter', DM_VERSION, :git => "#{DATAMAPPER}/dm-mysql-adapter.git", :require => nil
gem 'dm-types', DM_VERSION, :git => "#{DATAMAPPER}/dm-types.git"
gem 'dm-constraints', DM_VERSION, :git => "#{DATAMAPPER}/dm-constraints.git"
gem 'dm-aggregates', DM_VERSION, :git => "#{DATAMAPPER}/dm-aggregates.git"
gem 'dm-serializer', DM_VERSION, :git => "#{DATAMAPPER}/dm-serializer.git"
gem 'dm-timestamps', DM_VERSION, :git => "#{DATAMAPPER}/dm-timestamps.git"
gem 'dm-validations', DM_VERSION, :git => "#{DATAMAPPER}/dm-validations.git"
gem 'dm-is-remixable', DM_VERSION, :git => "#{DATAMAPPER}/dm-is-remixable.git"
gem 'dm-transactions', DM_VERSION, :git => "#{DATAMAPPER}/dm-transactions.git"
gem 'dm-is-self_referential', DM_VERSION, :git => "#{SNUSNU}/dm-is-self_referential.git"
gem 'dm-is-localizable', DM_VERSION, :git => "#{SNUSNU}/dm-is-localizable.git"
gem 'dm-accepts_nested_attributes', DM_VERSION, :git => "#{SNUSNU}/dm-accepts_nested_attributes.git"
gem 'dm-pager', '~> 1.1.0'
# TODO make this compatible with current rails master (no more ActionDispatch::Cascade in rails)
# gem 'astaire', '~> 0.3.0', :path => '/Users/snusnu/projects/github/forks/astaire' #:git => 'git://github.com/carllerche/astaire.git'
gem 'rails_metrics', '~> 0.1', :git => 'git://github.com/engineyard/rails_metrics'
gem 'octopussy', '~> 0.2.2', :git => 'git://github.com/pengwynn/octopussy.git'
gem 'mustache', '~> 0.11.2'
gem 'thin', '~> 1.2.7'
gem 'sinatra', '~> 1.0'
gem 'nokogiri', '~> 1.4.1'
gem 'rdiscount', '~> 1.6.3'
gem 'json', '~> 1.2.4'
gem 'rest-client', '~> 1.4.2'
gem 'tzinfo', '~> 0.3'
gem 'isaac', '~> 0.2.6', :require => nil
gem 'rake', '~> 0.8.7'
group :development do
gem 'rack-bug', '~> 0.2.2.pre', :git => "git://github.com/galetahub/rack-bug.git", :require => 'rack/bug'
end