mxit-rails 0.2.9 → 0.3.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.
- data/app/helpers/mxit_rails_helper.rb +26 -16
- data/app/views/layouts/mxit.html.erb +23 -6
- data/config/routes.rb +1 -1
- data/lib/mxit-rails.rb +0 -4
- data/lib/mxit_rails/descriptor.rb +4 -16
- data/lib/mxit_rails/page.rb +57 -20
- data/lib/mxit_rails/version.rb +1 -1
- data/test/dummy/app/controllers/welcome_controller.rb +18 -0
- data/test/dummy/app/views/index/index.html.erb +5 -3
- data/test/dummy/app/views/index/success.html.erb +1 -1
- data/test/dummy/app/views/welcome/multi.html.erb +6 -0
- data/test/dummy/app/views/welcome/single.html.erb +6 -0
- data/test/dummy/log/development.log +2677 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +8 -3
- data/lib/mxit_rails/redirect_exception.rb +0 -5
@@ -0,0 +1 @@
|
|
1
|
+
13351
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mxit-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-10-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -100,7 +100,6 @@ files:
|
|
100
100
|
- lib/mxit_rails/mxit_api/request_exception.rb
|
101
101
|
- lib/mxit_rails/page.rb
|
102
102
|
- lib/mxit_rails/railtie.rb
|
103
|
-
- lib/mxit_rails/redirect_exception.rb
|
104
103
|
- lib/mxit_rails/styles.rb
|
105
104
|
- lib/mxit_rails/validations.rb
|
106
105
|
- lib/mxit_rails/version.rb
|
@@ -126,6 +125,8 @@ files:
|
|
126
125
|
- test/dummy/app/views/layouts/application.html.erb
|
127
126
|
- test/dummy/app/views/welcome/easter_egg.html.erb
|
128
127
|
- test/dummy/app/views/welcome/index.html.erb
|
128
|
+
- test/dummy/app/views/welcome/multi.html.erb
|
129
|
+
- test/dummy/app/views/welcome/single.html.erb
|
129
130
|
- test/dummy/config/application.rb
|
130
131
|
- test/dummy/config/boot.rb
|
131
132
|
- test/dummy/config/database.yml
|
@@ -189,6 +190,7 @@ files:
|
|
189
190
|
- test/dummy/tmp/cache/assets/E26/4F0/sprockets%2F1cd8dafcb93f36aea8c2cf9d04c322d3
|
190
191
|
- test/dummy/tmp/cache/assets/E4F/E70/sprockets%2Fd9fffd76ac7c8ee08bedf3e257c81f99
|
191
192
|
- test/dummy/tmp/cache/assets/E76/0D0/sprockets%2Fcc9ce9eb21f4b4f9dbabfa0a3ca60b01
|
193
|
+
- test/dummy/tmp/pids/server.pid
|
192
194
|
- test/integration/navigation_test.rb
|
193
195
|
- test/mxit_rails_test.rb
|
194
196
|
- test/test_helper.rb
|
@@ -235,6 +237,8 @@ test_files:
|
|
235
237
|
- test/dummy/app/views/layouts/application.html.erb
|
236
238
|
- test/dummy/app/views/welcome/easter_egg.html.erb
|
237
239
|
- test/dummy/app/views/welcome/index.html.erb
|
240
|
+
- test/dummy/app/views/welcome/multi.html.erb
|
241
|
+
- test/dummy/app/views/welcome/single.html.erb
|
238
242
|
- test/dummy/config/application.rb
|
239
243
|
- test/dummy/config/boot.rb
|
240
244
|
- test/dummy/config/database.yml
|
@@ -298,6 +302,7 @@ test_files:
|
|
298
302
|
- test/dummy/tmp/cache/assets/E26/4F0/sprockets%2F1cd8dafcb93f36aea8c2cf9d04c322d3
|
299
303
|
- test/dummy/tmp/cache/assets/E4F/E70/sprockets%2Fd9fffd76ac7c8ee08bedf3e257c81f99
|
300
304
|
- test/dummy/tmp/cache/assets/E76/0D0/sprockets%2Fcc9ce9eb21f4b4f9dbabfa0a3ca60b01
|
305
|
+
- test/dummy/tmp/pids/server.pid
|
301
306
|
- test/integration/navigation_test.rb
|
302
307
|
- test/mxit_rails_test.rb
|
303
308
|
- test/test_helper.rb
|