Module: MassShootings

Defined in:
lib/mass_shootings.rb,
lib/mass_shootings/gemspec.rb,
lib/mass_shootings/tracker.rb,
lib/mass_shootings/version.rb,
lib/mass_shootings/shooting.rb

Overview

Mass shootings as a service.

Defined Under Namespace

Modules: Tracker Classes: Shooting

Constant Summary collapse

VERSION =

Current version of ‘mass_shootings`

'0.0.1'

Class Method Summary collapse

Class Method Details

.gemspecObject

Gemspec for ‘mass_shootings`. This is only used by the gemspec and the Rakefile, and must be required separately.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/mass_shootings/gemspec.rb', line 9

def gemspec
  @gemspec ||= Gem::Specification.new do |gem|
    gem.authors  = 'David P Kleinschmidt'
    gem.email    = '[email protected]'
    gem.homepage = 'http://bitbucket.org/zobar/mass_shootings'
    gem.license  = 'MIT'
    gem.name     = 'mass_shootings'
    gem.summary  = 'Mass shootings as a service'
    gem.version  = VERSION

    gem.files = Dir['*.md', '{lib,spec}/**/*.rb']

    gem.add_dependency 'activemodel', '~> 4.2'
    gem.add_dependency 'nokogiri',    '~> 1.6'

    gem.add_development_dependency 'minitest',  '~> 5.8'
    gem.add_development_dependency 'mocha',     '~> 1.1'
    gem.add_development_dependency 'simplecov', '~> 0.11'
    gem.add_development_dependency 'yard',      '~> 0.8'
  end
end