locomotive_cms 0.0.4.beta11 → 0.0.4.beta12
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +5 -4
- data/lib/locomotive/httparty/webservice.rb +3 -3
- data/lib/locomotive/version.rb +2 -1
- metadata +4 -4
data/README.textile
CHANGED
@@ -5,7 +5,7 @@ Locomotive is a simple but powerful CMS based on liquid templates and mongodb da
|
|
5
5
|
If we have to give only 5 main features to describe our application, there will be:
|
6
6
|
|
7
7
|
* managing as many websites as you want with one application instance
|
8
|
-
* nice looking UI (see http://www.
|
8
|
+
* nice looking UI (see http://www.locomotivecms.com for some screenshots)
|
9
9
|
* flexible content types
|
10
10
|
* playing smoothly with Heroku and MongoHQ
|
11
11
|
* inline editing (beta)
|
@@ -19,17 +19,18 @@ h2. Gems
|
|
19
19
|
|
20
20
|
Here is a short list of main gems used in the application.
|
21
21
|
|
22
|
-
* Rails 3.0
|
23
|
-
* Mongoid 2.0.0.beta
|
22
|
+
* Rails 3.0.3
|
23
|
+
* Mongoid 2.0.0.beta 19 (with MongoDB 1.6)
|
24
24
|
* Liquid
|
25
25
|
* Devise
|
26
26
|
* Carrierwave
|
27
27
|
* Haml
|
28
28
|
* Delayed job
|
29
|
+
* Jammit-s3
|
29
30
|
|
30
31
|
h2. Installation
|
31
32
|
|
32
|
-
See the "official website":http://www.
|
33
|
+
See the "official website":http://www.locomotivecms.com
|
33
34
|
|
34
35
|
h2. Team
|
35
36
|
|
@@ -20,10 +20,10 @@ module Locomotive
|
|
20
20
|
response = self.get(path, options)
|
21
21
|
|
22
22
|
if response.code == 200
|
23
|
-
if response.respond_to?(:
|
24
|
-
response.
|
23
|
+
if response.respond_to?(:underscore_keys)
|
24
|
+
response.underscore_keys
|
25
25
|
else
|
26
|
-
response.
|
26
|
+
response.collect(&:underscore_keys)
|
27
27
|
end
|
28
28
|
else
|
29
29
|
nil
|
data/lib/locomotive/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: locomotive_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: -
|
4
|
+
hash: -1967355476
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- 4
|
10
|
-
-
|
11
|
-
version: 0.0.4.
|
10
|
+
- beta12
|
11
|
+
version: 0.0.4.beta12
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Didier Lafforgue
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-01-
|
19
|
+
date: 2011-01-04 00:00:00 +01:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|