favourite_object 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,118 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actionmailer (4.0.2)
5
+ actionpack (= 4.0.2)
6
+ mail (~> 2.5.4)
7
+ actionpack (4.0.2)
8
+ activesupport (= 4.0.2)
9
+ builder (~> 3.1.0)
10
+ erubis (~> 2.7.0)
11
+ rack (~> 1.5.2)
12
+ rack-test (~> 0.6.2)
13
+ activemodel (4.0.2)
14
+ activesupport (= 4.0.2)
15
+ builder (~> 3.1.0)
16
+ activerecord (4.0.2)
17
+ activemodel (= 4.0.2)
18
+ activerecord-deprecated_finders (~> 1.0.2)
19
+ activesupport (= 4.0.2)
20
+ arel (~> 4.0.0)
21
+ activerecord-deprecated_finders (1.0.4)
22
+ activesupport (4.0.2)
23
+ i18n (~> 0.6, >= 0.6.4)
24
+ minitest (~> 4.2)
25
+ multi_json (~> 1.3)
26
+ thread_safe (~> 0.1)
27
+ tzinfo (~> 0.3.37)
28
+ arel (4.0.2)
29
+ builder (3.1.4)
30
+ coffee-rails (4.0.1)
31
+ coffee-script (>= 2.2.0)
32
+ railties (>= 4.0.0, < 5.0)
33
+ coffee-script (2.4.1)
34
+ coffee-script-source
35
+ execjs
36
+ coffee-script-source (1.10.0)
37
+ erubis (2.7.0)
38
+ execjs (2.6.0)
39
+ hike (1.2.3)
40
+ i18n (0.7.0)
41
+ jbuilder (1.5.3)
42
+ activesupport (>= 3.0.0)
43
+ multi_json (>= 1.2.0)
44
+ jquery-rails (3.1.4)
45
+ railties (>= 3.0, < 5.0)
46
+ thor (>= 0.14, < 2.0)
47
+ json (1.8.3)
48
+ mail (2.5.4)
49
+ mime-types (~> 1.16)
50
+ treetop (~> 1.4.8)
51
+ mime-types (1.25.1)
52
+ minitest (4.7.5)
53
+ multi_json (1.11.2)
54
+ polyglot (0.3.5)
55
+ rack (1.5.5)
56
+ rack-test (0.6.3)
57
+ rack (>= 1.0)
58
+ rails (4.0.2)
59
+ actionmailer (= 4.0.2)
60
+ actionpack (= 4.0.2)
61
+ activerecord (= 4.0.2)
62
+ activesupport (= 4.0.2)
63
+ bundler (>= 1.3.0, < 2.0)
64
+ railties (= 4.0.2)
65
+ sprockets-rails (~> 2.0.0)
66
+ railties (4.0.2)
67
+ actionpack (= 4.0.2)
68
+ activesupport (= 4.0.2)
69
+ rake (>= 0.8.7)
70
+ thor (>= 0.18.1, < 2.0)
71
+ rake (10.5.0)
72
+ rdoc (4.2.2)
73
+ json (~> 1.4)
74
+ sass (3.2.19)
75
+ sass-rails (4.0.5)
76
+ railties (>= 4.0.0, < 5.0)
77
+ sass (~> 3.2.2)
78
+ sprockets (~> 2.8, < 3.0)
79
+ sprockets-rails (~> 2.0)
80
+ sdoc (0.4.1)
81
+ json (~> 1.7, >= 1.7.7)
82
+ rdoc (~> 4.0)
83
+ sprockets (2.12.4)
84
+ hike (~> 1.2)
85
+ multi_json (~> 1.0)
86
+ rack (~> 1.0)
87
+ tilt (~> 1.1, != 1.3.0)
88
+ sprockets-rails (2.0.1)
89
+ actionpack (>= 3.0)
90
+ activesupport (>= 3.0)
91
+ sprockets (~> 2.8)
92
+ sqlite3 (1.3.11)
93
+ thor (0.19.1)
94
+ thread_safe (0.3.5)
95
+ tilt (1.4.1)
96
+ treetop (1.4.15)
97
+ polyglot
98
+ polyglot (>= 0.3.1)
99
+ turbolinks (2.5.3)
100
+ coffee-rails
101
+ tzinfo (0.3.46)
102
+ uglifier (2.7.2)
103
+ execjs (>= 0.3.0)
104
+ json (>= 1.8.0)
105
+
106
+ PLATFORMS
107
+ ruby
108
+
109
+ DEPENDENCIES
110
+ coffee-rails (~> 4.0.0)
111
+ jbuilder (~> 1.2)
112
+ jquery-rails
113
+ rails (= 4.0.2)
114
+ sass-rails (~> 4.0.0)
115
+ sdoc
116
+ sqlite3
117
+ turbolinks
118
+ uglifier (>= 1.3.0)
@@ -1,4 +1,6 @@
1
1
  Rails402::Application.routes.draw do
2
+ mount FavouriteObject::Engine, at: '/'
3
+
2
4
  # The priority is based upon order of creation: first created -> highest priority.
3
5
  # See how all your routes lay out with "rake routes".
4
6
 
File without changes