c2 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +24 -0
- metadata +5 -5
data/README.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# C2 - Command & Control
|
2
2
|
|
3
|
+
C2 consist of several modules that each provide different ways to take control of your app. The first module is Informant. Informant turns your models into a json store with a pretty web interface based on the amazing webpop.com CMS/Host.
|
4
|
+
|
5
|
+
This project is very new and under active development. Watch this project to keep up to date on new features and documentation.
|
6
|
+
|
7
|
+
## Install
|
8
|
+
|
9
|
+
Add the c2 gem to your gemfile.
|
10
|
+
|
11
|
+
gem 'c2'
|
12
|
+
|
13
|
+
Run bundler.
|
14
|
+
|
15
|
+
bundle install
|
16
|
+
|
17
|
+
Tell c2 to inspect models in your app and add them to the C2 - Informant App.
|
18
|
+
|
19
|
+
rake c2:discover
|
20
|
+
|
21
|
+
To serve static files from your public directory instead of the gem run the c2:install generator.
|
22
|
+
|
23
|
+
rails g c2:install
|
24
|
+
|
25
|
+
Start taking control of your app by visiting http://yourapp/c2/informant
|
26
|
+
|
3
27
|
## Note on Patches/Pull Requests
|
4
28
|
|
5
29
|
* Fork the project.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: c2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 4
|
10
|
+
version: 0.1.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- hexorx
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-04-
|
18
|
+
date: 2011-04-17 00:00:00 -06:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -181,7 +181,7 @@ files:
|
|
181
181
|
- spec/c2_spec.rb
|
182
182
|
- spec/spec_helper.rb
|
183
183
|
has_rdoc: true
|
184
|
-
homepage: http://
|
184
|
+
homepage: http://crackersnack.com/Command-And-Control
|
185
185
|
licenses: []
|
186
186
|
|
187
187
|
post_install_message:
|