Skip to content

Commit

Permalink
Adding description to Readme and gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
konung committed Mar 21, 2018
1 parent 81327b6 commit 3c09747
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Trailblazer Finder

Description should come here
Provides DSL for creating [Trailblazer](https://github.com/trailblazer/trailblazer) based Finder Objects. But it is designed to be used on its own as a separate gem. It was influenced by popular [Ransack](https://github.com/activerecord-hackery/ransack) gem, but in addition to [ActiveRecord](https://github.com/rails/rails/tree/master/activerecord), it can be used with [DataMapper](https://github.com/datamapper) or [Sequel](https://github.com/jeremyevans/sequel). It also integrates with [Kaminari](https://github.com/kaminari/kaminari) or [Will Paginate](https://github.com/mislav/will_paginate), as well as [FriendlyId](https://github.com/norman/friendly_id)

[![Gitter Chat](https://badges.gitter.im/trailblazer/chat.svg)](https://gitter.im/trailblazer/chat) [![Build Status](https://secure.travis-ci.org/trailblazer/trailblazer-finder.svg)](https://travis-ci.org/trailblazer/trailblazer-finder) [![Coverage Status](https://coveralls.io/repos/github/trailblazer/trailblazer-finder/badge.svg?branch=master)](https://coveralls.io/github/trailblazer/trailblazer-finder?branch=master)

Expand Down
28 changes: 14 additions & 14 deletions trailblazer-finder.gemspec
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'trailblazer/finder/version'

Gem::Specification.new do |spec|
spec.name = 'trailblazer-finder'
spec.version = Trailblazer::Finder::VERSION
spec.date = '2018-03-12'
spec.description = %q{Trailblazer Finder object DSL}
spec.summary = %q{Provides DSL for creating trailblazer based finder objects}
spec.authors = ["Nick Sutterer", "Marc Tich"]
spec.email = ["[email protected]", "[email protected]"]
spec.description = 'Trailblazer Finder object DSL'
spec.summary = 'Provides DSL for creating trailblazer based finder objects. It is designed to be used on its own as a separate gem. It was influenced by popular Ransack gem, but in addition to ActiveRecord, it can be used with DataMapper or Sequel. It also integrates with Kaminari or Will Paginate, as well as FriendlyId'
spec.authors = ['Nick Sutterer', 'Marc Tich']
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'http://trailblazer.to'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'sequel'
spec.add_development_dependency 'activerecord'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'will_paginate'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'data_mapper'
spec.add_development_dependency 'dm-sqlite-adapter'
spec.add_development_dependency 'kaminari'
spec.add_development_dependency 'kaminari-activerecord'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'rspec-mocks', '~> 3.5'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rspec'
spec.add_development_dependency 'data_mapper'
spec.add_development_dependency 'dm-sqlite-adapter'
spec.add_development_dependency 'sequel'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'trailblazer', '>= 2.1.0.beta4'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'will_paginate'

spec.required_ruby_version = '>= 2.2.0'
end

0 comments on commit 3c09747

Please sign in to comment.