backbone_mvc 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/backbone_mvc/engine.rb +4 -0
- data/lib/backbone_mvc/version.rb +3 -0
- data/lib/backbone_mvc.rb +4 -0
- data/lib/tasks/backbone_mvc_tasks.rake +4 -0
- data/test/backbone_mvc_test.rb +7 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/test_helper.rb +15 -0
- data/vendor/assets/javascripts/backbonemvc.js +542 -0
- metadata +142 -0
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: backbone_mvc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Juan Carlos (just the assets gem)
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sqlite3
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Description of BackboneMvc.
|
42
|
+
email:
|
43
|
+
- jchinojob7@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- lib/tasks/backbone_mvc_tasks.rake
|
49
|
+
- lib/backbone_mvc.rb
|
50
|
+
- lib/backbone_mvc/version.rb
|
51
|
+
- lib/backbone_mvc/engine.rb
|
52
|
+
- vendor/assets/javascripts/backbonemvc.js
|
53
|
+
- test/backbone_mvc_test.rb
|
54
|
+
- test/dummy/app/controllers/application_controller.rb
|
55
|
+
- test/dummy/app/views/layouts/application.html.erb
|
56
|
+
- test/dummy/app/assets/stylesheets/application.css
|
57
|
+
- test/dummy/app/assets/javascripts/application.js
|
58
|
+
- test/dummy/app/helpers/application_helper.rb
|
59
|
+
- test/dummy/config.ru
|
60
|
+
- test/dummy/README.rdoc
|
61
|
+
- test/dummy/bin/bundle
|
62
|
+
- test/dummy/bin/rake
|
63
|
+
- test/dummy/bin/rails
|
64
|
+
- test/dummy/Rakefile
|
65
|
+
- test/dummy/public/404.html
|
66
|
+
- test/dummy/public/422.html
|
67
|
+
- test/dummy/public/favicon.ico
|
68
|
+
- test/dummy/public/500.html
|
69
|
+
- test/dummy/config/locales/en.yml
|
70
|
+
- test/dummy/config/database.yml
|
71
|
+
- test/dummy/config/environments/production.rb
|
72
|
+
- test/dummy/config/environments/development.rb
|
73
|
+
- test/dummy/config/environments/test.rb
|
74
|
+
- test/dummy/config/application.rb
|
75
|
+
- test/dummy/config/routes.rb
|
76
|
+
- test/dummy/config/environment.rb
|
77
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
78
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
79
|
+
- test/dummy/config/initializers/mime_types.rb
|
80
|
+
- test/dummy/config/initializers/inflections.rb
|
81
|
+
- test/dummy/config/initializers/session_store.rb
|
82
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
83
|
+
- test/dummy/config/initializers/secret_token.rb
|
84
|
+
- test/dummy/config/boot.rb
|
85
|
+
- test/test_helper.rb
|
86
|
+
homepage: ''
|
87
|
+
licenses: []
|
88
|
+
metadata: {}
|
89
|
+
post_install_message:
|
90
|
+
rdoc_options: []
|
91
|
+
require_paths:
|
92
|
+
- lib
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - '>='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - '>='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 2.0.6
|
106
|
+
signing_key:
|
107
|
+
specification_version: 4
|
108
|
+
summary: neMvc.
|
109
|
+
test_files:
|
110
|
+
- test/backbone_mvc_test.rb
|
111
|
+
- test/dummy/app/controllers/application_controller.rb
|
112
|
+
- test/dummy/app/views/layouts/application.html.erb
|
113
|
+
- test/dummy/app/assets/stylesheets/application.css
|
114
|
+
- test/dummy/app/assets/javascripts/application.js
|
115
|
+
- test/dummy/app/helpers/application_helper.rb
|
116
|
+
- test/dummy/config.ru
|
117
|
+
- test/dummy/README.rdoc
|
118
|
+
- test/dummy/bin/bundle
|
119
|
+
- test/dummy/bin/rake
|
120
|
+
- test/dummy/bin/rails
|
121
|
+
- test/dummy/Rakefile
|
122
|
+
- test/dummy/public/404.html
|
123
|
+
- test/dummy/public/422.html
|
124
|
+
- test/dummy/public/favicon.ico
|
125
|
+
- test/dummy/public/500.html
|
126
|
+
- test/dummy/config/locales/en.yml
|
127
|
+
- test/dummy/config/database.yml
|
128
|
+
- test/dummy/config/environments/production.rb
|
129
|
+
- test/dummy/config/environments/development.rb
|
130
|
+
- test/dummy/config/environments/test.rb
|
131
|
+
- test/dummy/config/application.rb
|
132
|
+
- test/dummy/config/routes.rb
|
133
|
+
- test/dummy/config/environment.rb
|
134
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
135
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
136
|
+
- test/dummy/config/initializers/mime_types.rb
|
137
|
+
- test/dummy/config/initializers/inflections.rb
|
138
|
+
- test/dummy/config/initializers/session_store.rb
|
139
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
140
|
+
- test/dummy/config/initializers/secret_token.rb
|
141
|
+
- test/dummy/config/boot.rb
|
142
|
+
- test/test_helper.rb
|