cone 0.0.1 → 0.0.2
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.
- data/.gitignore +1 -0
- data/README.md +3 -1
- data/Rakefile +6 -0
- data/cone.gemspec +11 -0
- data/lib/assets/javascripts/cone.coffee.erb +7 -3
- data/test/.gitignore +15 -0
- data/test/Gemfile.lock +1 -1
- data/test/app/mailers/.gitkeep +0 -0
- data/test/app/models/.gitkeep +0 -0
- data/test/lib/assets/.gitkeep +0 -0
- data/test/lib/tasks/.gitkeep +0 -0
- data/test/log/.gitkeep +0 -0
- data/test/test/fixtures/.gitkeep +0 -0
- data/test/test/functional/.gitkeep +0 -0
- data/test/test/integration/.gitkeep +0 -0
- data/test/test/integration/cone_gem_test.rb +12 -6
- data/test/test/unit/.gitkeep +0 -0
- data/test/test/unit/cone_init_test.rb +7 -0
- data/test/vendor/assets/javascripts/.gitkeep +0 -0
- data/test/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/vendor/plugins/.gitkeep +0 -0
- metadata +24 -8
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
build
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# cone
|
2
2
|
|
3
|
-
|
3
|
+
Automatically generated javascript url helpers based on your Rails routes.
|
4
4
|
|
5
5
|
## usage
|
6
6
|
|
@@ -20,6 +20,8 @@ cone.userUrl({id: 12, format: 'json', foo: 'bar baz'});
|
|
20
20
|
"/users/12.json?foo=bar%20baz"
|
21
21
|
```
|
22
22
|
|
23
|
+
Reload the server whenever your routes change to have the javascript regenerated.
|
24
|
+
|
23
25
|
## installation
|
24
26
|
|
25
27
|
1. Add gem 'cone' to your Gemfile.
|
data/Rakefile
CHANGED
data/cone.gemspec
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
Gem::Specification.new do |gem|
|
2
|
+
gem.name = 'cone'
|
3
|
+
gem.version = '0.0.2'
|
4
|
+
gem.summary = "Rails client side url helpers"
|
5
|
+
gem.author = 'Lihan Li'
|
6
|
+
gem.email = 'frankieteardrop@gmail.com'
|
7
|
+
gem.homepage = 'http://github.com/lihanli/cone'
|
8
|
+
gem.files = `git ls-files`.split("\n")
|
9
|
+
|
10
|
+
gem.add_dependency('coffee-rails')
|
11
|
+
end
|
@@ -16,8 +16,12 @@ processUrl = (url, params) ->
|
|
16
16
|
url += "?#{paramsArray.join('&')}" unless paramsArray.length == 0
|
17
17
|
url
|
18
18
|
|
19
|
-
@cone =
|
19
|
+
@cone = {}
|
20
|
+
|
20
21
|
<% Rails.application.routes.routes.named_routes.each do |route_name, route_val| %>
|
21
|
-
|
22
|
-
|
22
|
+
|
23
|
+
<% route_name = route_name.camelize(:lower) %>
|
24
|
+
cone.<%= route_name %>Path = cone.<%= route_name %>Url = (params = {}) ->
|
25
|
+
processUrl(<%= route_val.path.spec.to_s.to_json %>, params)
|
26
|
+
|
23
27
|
<% end %>
|
data/test/.gitignore
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile ~/.gitignore_global
|
6
|
+
|
7
|
+
# Ignore bundler config
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore the default SQLite database.
|
11
|
+
/db/*.sqlite3
|
12
|
+
|
13
|
+
# Ignore all logfiles and tempfiles.
|
14
|
+
/log/*.log
|
15
|
+
/tmp
|
data/test/Gemfile.lock
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/test/log/.gitkeep
ADDED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,8 +1,10 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class ConeGemTest < ActionDispatch::IntegrationTest
|
4
|
-
|
5
|
-
|
4
|
+
|
5
|
+
def get_cone_url(name, opt = {})
|
6
|
+
# alias, params
|
7
|
+
get_js("cone.#{name}#{ opt[:alias] ? 'Url' : 'Path' }(#{ opt[:params] ? opt[:params].to_json : '' })")
|
6
8
|
end
|
7
9
|
|
8
10
|
test 'url without params' do
|
@@ -11,13 +13,17 @@ class ConeGemTest < ActionDispatch::IntegrationTest
|
|
11
13
|
end
|
12
14
|
|
13
15
|
test 'url with path params' do
|
14
|
-
assert_equal '/users/12/posts', get_cone_url('userPosts', user_id: '12')
|
15
|
-
assert_equal '/users/12/posts/34.json', get_cone_url('userPost', user_id: '12', id: '34', format: 'json')
|
16
|
+
assert_equal '/users/12/posts', get_cone_url('userPosts', params: {user_id: '12'})
|
17
|
+
assert_equal '/users/12/posts/34.json', get_cone_url('userPost', params: {user_id: '12', id: '34', format: 'json'})
|
16
18
|
end
|
17
19
|
|
18
20
|
test 'url with get params' do
|
19
|
-
assert_equal '/?foo=bar%20baz', get_cone_url('root', foo: 'bar baz')
|
20
|
-
assert_equal '/users/12/posts?foo=bar%20baz', get_cone_url('userPosts', user_id: '12', foo: 'bar baz')
|
21
|
+
assert_equal '/?foo=bar%20baz', get_cone_url('root', params: {foo: 'bar baz'})
|
22
|
+
assert_equal '/users/12/posts?foo=bar%20baz', get_cone_url('userPosts', params: {user_id: '12', foo: 'bar baz'})
|
23
|
+
end
|
24
|
+
|
25
|
+
test 'url helper alias' do
|
26
|
+
assert_equal '/users/12/posts', get_cone_url('userPosts', params: {user_id: '12'}, alias: true)
|
21
27
|
end
|
22
28
|
|
23
29
|
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -33,17 +33,29 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
+
- .gitignore
|
37
|
+
- MIT-LICENSE
|
38
|
+
- README.md
|
36
39
|
- Rakefile
|
40
|
+
- cone.gemspec
|
37
41
|
- lib/assets/javascripts/cone.coffee.erb
|
38
42
|
- lib/cone.rb
|
43
|
+
- test/.gitignore
|
44
|
+
- test/Gemfile
|
45
|
+
- test/Gemfile.lock
|
46
|
+
- test/README.rdoc
|
47
|
+
- test/Rakefile
|
39
48
|
- test/app/assets/images/rails.png
|
40
49
|
- test/app/assets/javascripts/application.js
|
41
50
|
- test/app/assets/stylesheets/application.css
|
42
51
|
- test/app/controllers/application_controller.rb
|
43
52
|
- test/app/controllers/users_controller.rb
|
44
53
|
- test/app/helpers/application_helper.rb
|
54
|
+
- test/app/mailers/.gitkeep
|
55
|
+
- test/app/models/.gitkeep
|
45
56
|
- test/app/views/layouts/application.html.erb
|
46
57
|
- test/app/views/users/index.html.erb
|
58
|
+
- test/config.ru
|
47
59
|
- test/config/application.rb
|
48
60
|
- test/config/boot.rb
|
49
61
|
- test/config/environment.rb
|
@@ -58,24 +70,28 @@ files:
|
|
58
70
|
- test/config/initializers/wrap_parameters.rb
|
59
71
|
- test/config/locales/en.yml
|
60
72
|
- test/config/routes.rb
|
61
|
-
- test/config.ru
|
62
73
|
- test/db/seeds.rb
|
63
74
|
- test/doc/README_FOR_APP
|
64
|
-
- test/
|
65
|
-
- test/
|
75
|
+
- test/lib/assets/.gitkeep
|
76
|
+
- test/lib/tasks/.gitkeep
|
77
|
+
- test/log/.gitkeep
|
66
78
|
- test/public/404.html
|
67
79
|
- test/public/422.html
|
68
80
|
- test/public/500.html
|
69
81
|
- test/public/favicon.ico
|
70
82
|
- test/public/robots.txt
|
71
|
-
- test/Rakefile
|
72
|
-
- test/README.rdoc
|
73
83
|
- test/script/rails
|
84
|
+
- test/test/fixtures/.gitkeep
|
85
|
+
- test/test/functional/.gitkeep
|
86
|
+
- test/test/integration/.gitkeep
|
74
87
|
- test/test/integration/cone_gem_test.rb
|
75
88
|
- test/test/performance/browsing_test.rb
|
76
89
|
- test/test/test_helper.rb
|
77
|
-
-
|
78
|
-
-
|
90
|
+
- test/test/unit/.gitkeep
|
91
|
+
- test/test/unit/cone_init_test.rb
|
92
|
+
- test/vendor/assets/javascripts/.gitkeep
|
93
|
+
- test/vendor/assets/stylesheets/.gitkeep
|
94
|
+
- test/vendor/plugins/.gitkeep
|
79
95
|
homepage: http://github.com/lihanli/cone
|
80
96
|
licenses: []
|
81
97
|
post_install_message:
|