js-routes 0.8.7 → 0.8.8
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +52 -0
- data/.travis.yml +7 -1
- data/Gemfile +2 -8
- data/Guardfile +3 -0
- data/Rakefile +2 -15
- data/Readme.md +13 -11
- data/js-routes.gemspec +13 -51
- data/lib/js_routes.rb +7 -3
- data/lib/js_routes/version.rb +3 -0
- data/lib/routes.js +129 -126
- data/lib/routes.js.coffee +132 -0
- data/spec/js_routes/options_spec.rb +31 -11
- data/spec/js_routes/rails_routes_compatibility_spec.rb +3 -3
- data/spec/spec_helper.rb +14 -7
- metadata +124 -102
- data/Gemfile.lock +0 -106
- data/VERSION +0 -1
data/Gemfile.lock
DELETED
@@ -1,106 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
actionmailer (3.2.1)
|
5
|
-
actionpack (= 3.2.1)
|
6
|
-
mail (~> 2.4.0)
|
7
|
-
actionpack (3.2.1)
|
8
|
-
activemodel (= 3.2.1)
|
9
|
-
activesupport (= 3.2.1)
|
10
|
-
builder (~> 3.0.0)
|
11
|
-
erubis (~> 2.7.0)
|
12
|
-
journey (~> 1.0.1)
|
13
|
-
rack (~> 1.4.0)
|
14
|
-
rack-cache (~> 1.1)
|
15
|
-
rack-test (~> 0.6.1)
|
16
|
-
sprockets (~> 2.1.2)
|
17
|
-
activemodel (3.2.1)
|
18
|
-
activesupport (= 3.2.1)
|
19
|
-
builder (~> 3.0.0)
|
20
|
-
activerecord (3.2.1)
|
21
|
-
activemodel (= 3.2.1)
|
22
|
-
activesupport (= 3.2.1)
|
23
|
-
arel (~> 3.0.0)
|
24
|
-
tzinfo (~> 0.3.29)
|
25
|
-
activeresource (3.2.1)
|
26
|
-
activemodel (= 3.2.1)
|
27
|
-
activesupport (= 3.2.1)
|
28
|
-
activesupport (3.2.1)
|
29
|
-
i18n (~> 0.6)
|
30
|
-
multi_json (~> 1.0)
|
31
|
-
arel (3.0.0)
|
32
|
-
builder (3.0.0)
|
33
|
-
diff-lcs (1.1.3)
|
34
|
-
erubis (2.7.0)
|
35
|
-
git (1.2.5)
|
36
|
-
hike (1.2.1)
|
37
|
-
i18n (0.6.0)
|
38
|
-
jeweler (1.6.4)
|
39
|
-
bundler (~> 1.0)
|
40
|
-
git (>= 1.2.5)
|
41
|
-
rake
|
42
|
-
journey (1.0.1)
|
43
|
-
json (1.6.5)
|
44
|
-
libv8 (3.3.10.4)
|
45
|
-
mail (2.4.1)
|
46
|
-
i18n (>= 0.4.0)
|
47
|
-
mime-types (~> 1.16)
|
48
|
-
treetop (~> 1.4.8)
|
49
|
-
mime-types (1.17.2)
|
50
|
-
multi_json (1.0.4)
|
51
|
-
polyglot (0.3.3)
|
52
|
-
rack (1.4.1)
|
53
|
-
rack-cache (1.1)
|
54
|
-
rack (>= 0.4)
|
55
|
-
rack-ssl (1.3.2)
|
56
|
-
rack
|
57
|
-
rack-test (0.6.1)
|
58
|
-
rack (>= 1.0)
|
59
|
-
rails (3.2.1)
|
60
|
-
actionmailer (= 3.2.1)
|
61
|
-
actionpack (= 3.2.1)
|
62
|
-
activerecord (= 3.2.1)
|
63
|
-
activeresource (= 3.2.1)
|
64
|
-
activesupport (= 3.2.1)
|
65
|
-
bundler (~> 1.0)
|
66
|
-
railties (= 3.2.1)
|
67
|
-
railties (3.2.1)
|
68
|
-
actionpack (= 3.2.1)
|
69
|
-
activesupport (= 3.2.1)
|
70
|
-
rack-ssl (~> 1.3.2)
|
71
|
-
rake (>= 0.8.7)
|
72
|
-
rdoc (~> 3.4)
|
73
|
-
thor (~> 0.14.6)
|
74
|
-
rake (0.9.2)
|
75
|
-
rdoc (3.12)
|
76
|
-
json (~> 1.4)
|
77
|
-
rspec (2.10.0)
|
78
|
-
rspec-core (~> 2.10.0)
|
79
|
-
rspec-expectations (~> 2.10.0)
|
80
|
-
rspec-mocks (~> 2.10.0)
|
81
|
-
rspec-core (2.10.1)
|
82
|
-
rspec-expectations (2.10.0)
|
83
|
-
diff-lcs (~> 1.1.3)
|
84
|
-
rspec-mocks (2.10.1)
|
85
|
-
sprockets (2.1.2)
|
86
|
-
hike (~> 1.2)
|
87
|
-
rack (~> 1.0)
|
88
|
-
tilt (~> 1.1, != 1.3.0)
|
89
|
-
therubyracer (0.9.10)
|
90
|
-
libv8 (~> 3.3.10)
|
91
|
-
thor (0.14.6)
|
92
|
-
tilt (1.3.3)
|
93
|
-
treetop (1.4.10)
|
94
|
-
polyglot
|
95
|
-
polyglot (>= 0.3.1)
|
96
|
-
tzinfo (0.3.31)
|
97
|
-
|
98
|
-
PLATFORMS
|
99
|
-
ruby
|
100
|
-
|
101
|
-
DEPENDENCIES
|
102
|
-
bundler (~> 1.1.0)
|
103
|
-
jeweler (~> 1.6.2)
|
104
|
-
rails (>= 3.2)
|
105
|
-
rspec (~> 2.10.0)
|
106
|
-
therubyracer
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.8.7
|