stiki 0.1.3 → 0.1.4
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/assets/stylesheets/stiki/spaces.css +22 -0
- data/app/controllers/stiki/spaces_controller.rb +24 -1
- data/app/helpers/stiki/application_helper.rb +3 -1
- data/app/models/stiki/space.rb +7 -1
- data/app/views/stiki/pages/edit.html.erb +1 -1
- data/app/views/stiki/pages/new.html.erb +1 -2
- data/app/views/stiki/spaces/edit.html.erb +39 -0
- data/app/views/stiki/spaces/index.html.erb +58 -53
- data/lib/stiki/authenticate/devise.rb +2 -2
- data/lib/stiki/authorize/cancan.rb +1 -1
- data/lib/stiki/version.rb +1 -1
- data/spec/controllers/stiki/pages_controller_spec.rb +1 -0
- data/spec/helpers/stiki/application_helper_spec.rb +57 -0
- data/spec/lib/authenticate/devise_spec.rb +1 -1
- data/spec/lib/stiki_spec.rb +2 -1
- data/spec/spec_helper.rb +28 -3
- data/test/dummy/log/test.log +30719 -0
- metadata +7 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stiki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
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-08-
|
12
|
+
date: 2012-08-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -178,6 +178,7 @@ files:
|
|
178
178
|
- app/models/stiki/page.rb
|
179
179
|
- app/models/stiki/space.rb
|
180
180
|
- app/views/stiki/spaces/index.html.erb
|
181
|
+
- app/views/stiki/spaces/edit.html.erb
|
181
182
|
- app/views/stiki/pages/new.html.erb
|
182
183
|
- app/views/stiki/pages/index.html.erb
|
183
184
|
- app/views/stiki/pages/_form.html.erb
|
@@ -241,6 +242,7 @@ files:
|
|
241
242
|
- spec/spec_helper.rb
|
242
243
|
- spec/factories/pages.rb
|
243
244
|
- spec/factories/spaces.rb
|
245
|
+
- spec/helpers/stiki/application_helper_spec.rb
|
244
246
|
- spec/models/stiki/page_spec.rb
|
245
247
|
- spec/models/stiki/author_spec.rb
|
246
248
|
- spec/models/stiki/space_spec.rb
|
@@ -262,7 +264,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
262
264
|
version: '0'
|
263
265
|
segments:
|
264
266
|
- 0
|
265
|
-
hash:
|
267
|
+
hash: 2305586921558367832
|
266
268
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
267
269
|
none: false
|
268
270
|
requirements:
|
@@ -271,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
271
273
|
version: '0'
|
272
274
|
segments:
|
273
275
|
- 0
|
274
|
-
hash:
|
276
|
+
hash: 2305586921558367832
|
275
277
|
requirements: []
|
276
278
|
rubyforge_project:
|
277
279
|
rubygems_version: 1.8.24
|
@@ -316,6 +318,7 @@ test_files:
|
|
316
318
|
- spec/spec_helper.rb
|
317
319
|
- spec/factories/pages.rb
|
318
320
|
- spec/factories/spaces.rb
|
321
|
+
- spec/helpers/stiki/application_helper_spec.rb
|
319
322
|
- spec/models/stiki/page_spec.rb
|
320
323
|
- spec/models/stiki/author_spec.rb
|
321
324
|
- spec/models/stiki/space_spec.rb
|