diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2515dad --- /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.5] +### Added +- Changelog for tracking releases + +### Updated +- Sass files to remove css to fix deprecation warnings + +[0.2.5]: https://github.com/spartansystems/atomic_cms/compare/v0.2.3...v0.2.5 \ No newline at end of file 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/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 diff --git a/atomic_cms.gemspec b/atomic_cms.gemspec index 95a7f9a..ff0d625 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.5' 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'