wagn 1.21.0 → 1.21.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +2 -104
  3. data/wagn.gemspec +1 -2
  4. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd62b300fdfa7ab1eb32f5d2d3d751acbc3b7e91
4
- data.tar.gz: dad2c2256c30f6e82f15ec16e6195970ab4b136e
3
+ metadata.gz: 299e2ef0a6709e98fabea525d733dbd39bee4099
4
+ data.tar.gz: 02a8663c920532ce0f29cd1d4e765092fd3dca33
5
5
  SHA512:
6
- metadata.gz: f260458a65f9d11fb29d3158e6f6c2df207f4f43ba11323f5f10fa3b1aa44cf50c3f06c196178a4ae075d8272c9de6ba0e3d50869fa37242a23a6835391a639c
7
- data.tar.gz: 97798f779c80e00b109467746a93f30df0af24dbb6319ba26c7ddffa8a2d0b24e1f5c7931fc14f8e80b80210719b375920dbc76acca68d8588591f3fc6a2305b
6
+ metadata.gz: 8a0a95a48ad70895204d53e5f6b3fbf761884b200ed33aef6e70a61b3069649ce215888ce93d52b30e940b759fff1a1783e2339dadf2cccff18c7a228a673506
7
+ data.tar.gz: 88cf4fd8c32a5296a8efe4ce1270a95ef7f6872e03c92269202a0655b7fb9555c4f5f47d7860214a6728ce5fc0d2dabaef323f5d9b5c9278d570798fa29ddcdd
@@ -1,108 +1,6 @@
1
- =Wagn: how pioneers roll
1
+ = Wagn is now Decko
2
2
 
3
- {<img src="https://semaphoreci.com/api/v1/projects/0d61c1f9-5ef0-4c5c-89c6-7664e247e4be/294670/shields_badge.svg" />}[https://semaphoreci.com/ethan/wagn]
4
- {<img src="https://badge.fury.io/rb/wagn.svg" alt="Gem Version" />}[https://badge.fury.io/rb/wagn]
5
- {<img src="https://codeclimate.com/repos/56548cb6fafb98574e013c39/badges/be88db3f72d0fd06ace3/gpa.svg" />}[https://codeclimate.com/repos/56548cb6fafb98574e013c39/feed]
6
-
7
- ==Basics
8
-
9
- Wagn is serious web development made fun.
10
-
11
- "Wagneers" have used Wagn to create open community sites, private knowledge management sites, public proposal submission sites with private back-ends for review, project management systems, wikis, blogs, journals, forums, and more.
12
-
13
- Install Wagn, open a webpage, and get started. With Wagn's wiki-inspired building blocks, you can collaborate from day one on content, design, and structure create elegant web systems on the fly. And ruby developers can take these creations even further with Wagn's development framework. Wagn's innovative Mods API supports boundless creativity while integrating seamlessly with structures created on the site.
14
-
15
- Try it out with automated setup at Cloudstore[https://cldstr.com/wagn.org/wagn] (free hosting for one trial month) or set it up yourself following the instructions below.
16
-
17
-
18
- ==System Requirements
19
-
20
- Ruby[http://www.ruby-lang.org/en/]:: version 1.9.3 or higher
21
- Bundler[http://gembundler.com/]:: version 1.0 or higher
22
- ImageMagick[http://www.imagemagick.org/]::
23
- A database engine:: Either MySQL[http://www.mysql.com/] or PostgreSQL[http://www.postgresql.org/]
24
- Node.js[https://nodejs.org/]:: or another {JavaScript runtime}[https://github.com/sstephenson/execjs]
25
-
26
- ==Installation
27
-
28
- ===1. install the gem
29
-
30
- gem install wagn
31
-
32
- Watch carefully for errors!
33
-
34
-
35
- ===2. create a new wagn application
36
-
37
- wagn new mysite
38
-
39
-
40
- ===3. create / seed database
41
-
42
- Edit the config/database.yml file as necessary. More about database configuration at http://www.wagn.org/database_configuration.
43
-
44
- Then run
45
-
46
- cd mysite
47
- wagn seed
48
-
49
- ..to create and seed the database
50
-
51
-
52
- ===4. start your server
53
-
54
- To fire up the default, built-in WEBrick server, just run:
55
-
56
- wagn server
57
-
58
- ...and point your browser to http://localhost:3000 (unless otherwise configured).
59
-
60
- WEBrick is great for a quick test run. To run a production website, see http://www.wagn.org/wagn_in_production.
61
-
62
-
63
- ==Upgrading
64
-
65
- ===Standard Upgrades
66
-
67
- ====1. Backups
68
- Always back up your database and uploaded files.
69
-
70
- ====2. Update Libraries
71
-
72
- From your wagn root directory run:
73
-
74
- bundle update
75
-
76
- ====3. Update Database
77
-
78
- Run the following:
79
-
80
- wagn update
81
-
82
- ====4. Restart your server.
83
-
84
- ===Upgrading pre-gem Wagn sites
85
-
86
- First check the Wagn version of your existing site.
87
-
88
- ====Version 1.10 or newer
89
-
90
- 1. Create a new Wagn app using steps 1 and 2 from the installation section above.
91
- 2. Copy config/database.yml from the old site to the new one.
92
- 3. Copy the old local/files contents to the new "files" directory.
93
- 4. If you have edited wagn.yml in your old site, make the corresponding changes to the new config/application.rb file.
94
- 5. Follow the standard upgrade procedure above.
95
-
96
- ====Older than Version 1.10
97
-
98
- First update your Wagn to version 1.10 via the old update mechanisms, and then follow the directions above.
99
-
100
-
101
- ==More Resources
102
-
103
- If you're new to Wagn, you'll find lots more info at http://wagn.org
104
-
105
- If you're looking to go deep into the code, start with this introduction
3
+ Development has been moved to https://github.com/decko-commons/decko. The decko gem is available at https://rubygems.org/gems/decko
106
4
 
107
5
 
108
6
 
@@ -11,8 +11,7 @@ Gem::Specification.new do |s|
11
11
 
12
12
  # s.date = '2013-12-20'
13
13
  s.summary = "structured wiki web platform"
14
- s.description = "a wiki approach to stuctured data, dynamic interaction, "\
15
- " and web design"
14
+ s.description = "wagn is now decko. come on over!"
16
15
  s.homepage = "http://wagn.org"
17
16
  s.licenses = ["GPL-2.0", "GPL-3.0"]
18
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wagn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan McCutchen
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2017-06-27 00:00:00.000000000 Z
14
+ date: 2018-02-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -33,15 +33,15 @@ dependencies:
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 1.21.0
36
+ version: 1.21.1
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - '='
42
42
  - !ruby/object:Gem::Version
43
- version: 1.21.0
44
- description: a wiki approach to stuctured data, dynamic interaction, and web design
43
+ version: 1.21.1
44
+ description: wagn is now decko. come on over!
45
45
  email:
46
46
  - info@wagn.org
47
47
  executables:
@@ -764,7 +764,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
764
764
  version: '0'
765
765
  requirements: []
766
766
  rubyforge_project:
767
- rubygems_version: 2.6.6
767
+ rubygems_version: 2.6.13
768
768
  signing_key:
769
769
  specification_version: 4
770
770
  summary: structured wiki web platform