From 813f43b060569acf86d6a6081db2ae883703026e Mon Sep 17 00:00:00 2001 From: Jacob Date: Fri, 29 Jan 2016 12:49:36 -0500 Subject: [PATCH 1/3] Remove deprecated naming convention Why: * It throws deprecation warnings when other apps use the Gem This change addresses the need by: * Renaming the offending file. --- app/assets/stylesheets/{atomic_cms.css.scss => atomic_cms.scss} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/assets/stylesheets/{atomic_cms.css.scss => atomic_cms.scss} (100%) diff --git a/app/assets/stylesheets/atomic_cms.css.scss b/app/assets/stylesheets/atomic_cms.scss similarity index 100% rename from app/assets/stylesheets/atomic_cms.css.scss rename to app/assets/stylesheets/atomic_cms.scss From 7b5a44203b77e3119e245a8c1784e504b8e9a475 Mon Sep 17 00:00:00 2001 From: Jacob Date: Fri, 29 Jan 2016 12:58:56 -0500 Subject: [PATCH 2/3] Added changelog for tracking Updates Why: * So we can have a good release log This change addresses the need by: * Adding changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..84acc34 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/). + +## [0.2.4] +### Added +- Changelog for tracking releases + +### Updated +- Sass files to remove css to fix deprecation warnings + +[0.2.4]: https://github.com/spartansystems/raygun-rails-template/compare/v0.2.3...v0.2.4 \ No newline at end of file From d7508415173ca102af6f0ef1a692abcfc69dfe98 Mon Sep 17 00:00:00 2001 From: Jacob Date: Fri, 29 Jan 2016 13:05:33 -0500 Subject: [PATCH 3/3] Update gemspec Why: * Cuz we are gonna update the version * Add homepage * Add license This change addresses the need by: * Updating the gemspec to the new version * Uncomment two lines in the gemspec * Add data to the readme for truthiness --- README.md | 3 +++ atomic_cms.gemspec | 7 +++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e1e2e64..df0017b 100644 --- a/README.md +++ b/README.md @@ -173,3 +173,6 @@ config.autoload_paths += %W(#{config.root}/lib, #{config.root}/app/components/** ### Gotcha's When creating a path for a page, from the examples above, make sure to include a leading '/', for example: '/home' -or- '/bears' + +## License +Atomic CMS is released under the [MIT License](http://opensource.org/licenses/MIT). diff --git a/atomic_cms.gemspec b/atomic_cms.gemspec index 95a7f9a..833fd04 100644 --- a/atomic_cms.gemspec +++ b/atomic_cms.gemspec @@ -1,15 +1,14 @@ Gem::Specification.new do |s| s.name = 'atomic_cms' - s.version = '0.2.3' - s.date = '2015-06-19' + s.version = '0.2.4' s.summary = 'Atomic CMS' s.description = 'Live CMS powered by atomic assets.' s.authors = ['Don Humphreys', 'Spartan'] s.email = 'spartan-helot@spartansystems.co' s.files = `git ls-files`.split(/\n/) s.test_files = Dir['spec/**/*'] - # s.homepage = 'http://rubygems.org/gems/atomic_cms' - # s.license = 'MIT' + s.homepage = 'https://github.com/spartansystems/atomic_cms' + s.license = 'MIT' s.add_dependency 'rails', '~> 4.2' s.add_dependency 'activeadmin', '1.0.0.pre2'