rocket_cms 0.5.10 → 0.5.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ece4b91e2b2eee4074e24609aed2aa4f22201f3
4
- data.tar.gz: 0763ebd659ac014ec4cfa93e1aaa0865b55f2b93
3
+ metadata.gz: fd9db7aa41e6d3ed10996884c16d70b6b4b8a452
4
+ data.tar.gz: 41210007ffa8289e355d42203cf51035c13262ae
5
5
  SHA512:
6
- metadata.gz: 376be05524e7a13a6cbb72748fe183f3680fc1f231877634cd22f1efa93bbfe12848b7e5b5d1ac1500bc23ecc5a2b435e1c191aec788ef794f165c8f8ba24442
7
- data.tar.gz: 9e9be613a8a77fc676ff2e1005828c3596cd1bb2da570347ec7549614762a2646f3e390ee2aeadea869c7d0120b13bcb057aa8bab1ad5f22eaef4a5b9efa3ba3
6
+ metadata.gz: 7ab16d6221f66ff3718be3b56e52c7bd28f85e6aa615fe6c050910e4649f48f6e20c7edce6f3dbbb7ff8443287e63965a912eb3c95e34752dba9f4b8a2a0b95b
7
+ data.tar.gz: d33e283607031d18afc3c313a516089de8ead751395911561bd07002819a102075579c0a46bb32cc16232273b3cdbac27b558f766966c0ba6a1168fcfda6beea
data/.gitignore CHANGED
@@ -14,3 +14,5 @@ spec/reports
14
14
  test/tmp
15
15
  test/version_tmp
16
16
  tmp
17
+ mongoid/Gemfile.lock
18
+ activerecord/Gemfile.lock
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rocket_cms (0.5.10)
4
+ rocket_cms (0.5.11)
5
5
  addressable
6
6
  coffee-rails
7
7
  devise
@@ -55,7 +55,7 @@ GEM
55
55
  tzinfo (~> 1.1)
56
56
  addressable (2.3.6)
57
57
  arel (5.0.1.20140414130214)
58
- bcrypt (3.1.7)
58
+ bcrypt (3.1.9)
59
59
  builder (3.2.2)
60
60
  coffee-rails (4.1.0)
61
61
  coffee-script (>= 2.2.0)
@@ -80,7 +80,7 @@ GEM
80
80
  mime-types
81
81
  orm_adapter (~> 0.5.0)
82
82
  rails (~> 4.0)
83
- glebtv-simple_captcha (0.6.5)
83
+ glebtv-simple_captcha (0.6.7)
84
84
  haml (4.0.5)
85
85
  tilt
86
86
  hike (1.2.3)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RocketCMS
2
2
 
3
- rails_admin + mongoid + elasticsearch CMS
3
+ rails_admin + mongoid/activerecord + elasticsearch CMS
4
4
 
5
5
  Very opinionated and tuned for our needs.
6
6
 
@@ -19,6 +19,8 @@ or:
19
19
 
20
20
  gem 'rocket_cms_activerecord'
21
21
 
22
+ *Only PostgreSQL is tested or supported for AR. Others will probably work, but untested.*
23
+
22
24
  And then execute:
23
25
 
24
26
  $ bundle
@@ -32,7 +32,7 @@ module RsPages
32
32
  end
33
33
  end
34
34
  if !page.nil? && do_redirect
35
- redirect_to path
35
+ redirect_to path, status: :moved_permanently
36
36
  end
37
37
 
38
38
  page
@@ -1,3 +1,3 @@
1
1
  module RocketCMS
2
- VERSION = "0.5.10"
2
+ VERSION = "0.5.11"
3
3
  end
data/release.sh CHANGED
@@ -1,9 +1,12 @@
1
1
  #!/usr/bin/bash
2
2
  bundle update
3
- gt "${*:1}"
3
+ git add --all .
4
+ git commit -am "${*:1}"
5
+ git push
4
6
  rake release
5
- cd mongoid && bundle update && cd ..
6
- cd activerecord && bundle update && cd ..
7
- gt 'release gem'
8
- cd mongoid && rake release && cd ..
9
- cd activerecord && rake release && cd ..
7
+ cd mongoid
8
+ bundle update && rake release
9
+ cd ..
10
+ cd activerecord
11
+ bundle update && rake release
12
+ cd ..
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocket_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.10
4
+ version: 0.5.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebtv
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-22 00:00:00.000000000 Z
11
+ date: 2014-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler