summaryrefslogtreecommitdiff
path: root/core/lib/extensions/couchrest.rb
blob: b17159bf5e555b58fd88b1e4b30f18de0c49a75e (plain)
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
module CouchRest
  module Model
    module Designs

      class View

        # so we can called Ticket.method.descending or Ticket.method.ascending
        def ascending
          self
        end
      end

      class DesignMapper
        def load_views(dir)
          Dir.glob("#{dir}/*.js") do |js|
            name = File.basename(js, '.js')
            file = File.open(js, 'r')
            view name.to_sym,
              :map => file.read,
              :reduce => "function(key, values, rereduce) { return sum(values); }"
          end
        end
      end
    end

    class Migrate
      def self.load_all_models_with_engines
        self.load_all_models_without_engines
        return unless defined?(Rails)
        Dir[Rails.root + 'app/models/**/*.rb'].each do |path|
          require path
        end
        Dir[Rails.root + '*/app/models/**/*.rb'].each do |path|
          require path
        end
      end

      def self.all_models_and_proxies
        callbacks = migrate_each_model(find_models)
        callbacks += migrate_each_proxying_model(find_proxying_models)
        cleanup(callbacks)
      end



      class << self
        alias_method_chain :load_all_models, :engines
      end

    end
  end

  class ModelRailtie
    config.action_dispatch.rescue_responses.merge!(
      'CouchRest::Model::DocumentNotFound' => :not_found,
      'RestClient::ResourceNotFound' => :not_found
    )
  end
end