decko 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8459312b88bb6f76877b8f0e3a5792e5610ed60
4
- data.tar.gz: 10096d5ead09136f7c016a8b441d45aa01690d19
3
+ metadata.gz: 0e1d40251dde9014b769f25491f95ceec087bc1f
4
+ data.tar.gz: d3689601443aee3e90c2da2b3fe85690bcd43a2f
5
5
  SHA512:
6
- metadata.gz: a2125a4799b751e4ade6c8edfe19dfc45aa785b3c2fa14e64324f29c72cace3d96a2494ae9bb568e518eb4f8bf81377eae715678ae0bf8eb51cb4282a26a6657
7
- data.tar.gz: ba6c4f15324aed3d5f1b18dffc15f4ddcedd0e894ce44c27beed232cbdb8f8866aa8367accafd4f11b53eb366194284cf068e92cb4c1723659c373469b1560cf
6
+ metadata.gz: 32a9536de63f6ec90c3431471ad888e7769de2751a6efe7d1230003f362db3d61a0dcb6af54bbdf0a0110f67005bfab602c037be53e53f1db1e7c5420c856a49
7
+ data.tar.gz: e01e70cec3d7234c69bc77d9b0297d81d1b4ead61d97eab5012b5fb5ee746d41cd455d580e4c68ea5c97210377a34c209bcd448efa3613b1052cb0a17f176cb6
@@ -1,23 +1,23 @@
1
- =Wagn: how pioneers roll
1
+ =Decko: you hold the cards
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]
3
+ {<img src="https://semaphoreci.com/api/v1/projects/0d61c1f9-5ef0-4c5c-89c6-7664e247e4be/294670/shields_badge.svg" />}[https://semaphoreci.com/ethan/decko]
4
+ {<img src="https://badge.fury.io/rb/decko.svg" alt="Gem Version" />}[https://badge.fury.io/rb/decko]
5
5
  {<img src="https://codeclimate.com/repos/56548cb6fafb98574e013c39/badges/be88db3f72d0fd06ace3/gpa.svg" />}[https://codeclimate.com/repos/56548cb6fafb98574e013c39/feed]
6
6
 
7
7
  ==Basics
8
8
 
9
- Wagn is serious web development made fun.
9
+ Decko (formerly known as "Wagn") is serious web development made fun.
10
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.
11
+ "Deckers" have used Decko 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
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.
13
+ Install Decko, open a webpage, and get started. With Decko'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 Decko's development framework. Decko's innovative Mods API supports boundless creativity while integrating seamlessly with structures created on the site.
14
14
 
15
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
16
 
17
17
 
18
18
  ==System Requirements
19
19
 
20
- Ruby[http://www.ruby-lang.org/en/]:: version 1.9.3 or higher
20
+ Ruby[http://www.ruby-lang.org/en/]:: version 2.2.2 or higher
21
21
  Bundler[http://gembundler.com/]:: version 1.0 or higher
22
22
  ImageMagick[http://www.imagemagick.org/]::
23
23
  A database engine:: Either MySQL[http://www.mysql.com/] or PostgreSQL[http://www.postgresql.org/]
@@ -27,14 +27,14 @@ Node.js[https://nodejs.org/]:: or another {JavaScript runtime}[https://github.co
27
27
 
28
28
  ===1. install the gem
29
29
 
30
- gem install wagn
30
+ gem install decko
31
31
 
32
32
  Watch carefully for errors!
33
33
 
34
34
 
35
- ===2. create a new wagn application
35
+ ===2. create a new deck
36
36
 
37
- wagn new mysite
37
+ decko new _mysite_
38
38
 
39
39
 
40
40
  ===3. create / seed database
@@ -43,8 +43,8 @@ Edit the config/database.yml file as necessary. More about database configuratio
43
43
 
44
44
  Then run
45
45
 
46
- cd mysite
47
- wagn seed
46
+ cd _mysite_
47
+ decko seed
48
48
 
49
49
  ..to create and seed the database
50
50
 
@@ -53,7 +53,7 @@ Then run
53
53
 
54
54
  To fire up the default, built-in WEBrick server, just run:
55
55
 
56
- wagn server
56
+ decko server
57
57
 
58
58
  ...and point your browser to http://localhost:3000 (unless otherwise configured).
59
59
 
@@ -69,7 +69,7 @@ Always back up your database and uploaded files.
69
69
 
70
70
  ====2. Update Libraries
71
71
 
72
- From your wagn root directory run:
72
+ From your decko root directory run:
73
73
 
74
74
  bundle update
75
75
 
@@ -77,17 +77,17 @@ From your wagn root directory run:
77
77
 
78
78
  Run the following:
79
79
 
80
- wagn update
80
+ decko update
81
81
 
82
82
  ====4. Restart your server.
83
83
 
84
84
  ===Upgrading pre-gem Wagn sites
85
85
 
86
- First check the Wagn version of your existing site.
86
+ First check the Wagn/Decko version of your existing site.
87
87
 
88
88
  ====Version 1.10 or newer
89
89
 
90
- 1. Create a new Wagn app using steps 1 and 2 from the installation section above.
90
+ 1. Create a new deck using steps 1 and 2 from the installation section above.
91
91
  2. Copy config/database.yml from the old site to the new one.
92
92
  3. Copy the old local/files contents to the new "files" directory.
93
93
  4. If you have edited wagn.yml in your old site, make the corresponding changes to the new config/application.rb file.
@@ -100,9 +100,9 @@ First update your Wagn to version 1.10 via the old update mechanisms, and then f
100
100
 
101
101
  ==More Resources
102
102
 
103
- If you're new to Wagn, you'll find lots more info at http://wagn.org
103
+ If you're new to Decko, you'll find lots more info at http://wagn.org
104
104
 
105
- If you're looking to go deep into the code, start with this introduction
105
+ If you're looking to go deep into the code, start with http://www.rubydoc.info/gems/card
106
106
 
107
107
 
108
108
 
@@ -1,6 +1,6 @@
1
1
  require "decko/application"
2
2
  require_relative "alias"
3
- require_relative "../../../../card/db/seed_consts"
3
+ require "card/seed_consts"
4
4
 
5
5
  CARD_TASKS =
6
6
  [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decko
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
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-10-08 00:00:00.000000000 Z
14
+ date: 2017-10-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -33,14 +33,14 @@ dependencies:
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 1.92.1
36
+ version: 1.92.2
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.92.1
43
+ version: 1.92.2
44
44
  description: a wiki approach to stuctured data, dynamic interaction, and web design
45
45
  email:
46
46
  - info@decko.org