Sha256: a2f0ff50a7ccfda93bbe5aff4cde01fe921660ba203686740461f5cd843affba
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'api_me/version' Gem::Specification.new do |s| s.name = 'api_me' s.version = ApiMe::VERSION s.authors = ['Sam Clopton'] s.email = ['samsinite@gmail.com'] s.homepage = 'https://github.com/inigo/api_me' s.summary = 'Api Me' s.description = "This friendly library gives you helpers and generators to assist building RESTful API's in your Rails app." s.license = 'MIT' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {spec}/*`.split("\n") s.require_paths = %w(lib app) s.add_runtime_dependency 'activerecord', '>= 3.2.0' s.add_runtime_dependency 'activesupport', '>= 3.2.0' s.add_runtime_dependency 'pundit', '~> 0.1' s.add_runtime_dependency 'active_model_serializers', '~> 0.8.0' s.add_runtime_dependency 'search_object', '~> 1.0' s.add_development_dependency 'combustion', '~> 0.5.1' s.add_development_dependency 'rspec-rails', '~> 3' s.add_development_dependency 'sqlite3', '~> 1.3.7' s.add_development_dependency 'rubocop', '>= 0.27.0' s.add_development_dependency 'rake-notes', '>= 0.2.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
api_me-0.3.3 | api_me.gemspec |
api_me-0.3.2 | api_me.gemspec |