Sha256: 7adaf37db1c361032af2b5b1192b56a74fb6ad60f1fca35435ba438f7a075233

Contents?: true

Size: 1.57 KB

Versions: 1

Compression:

Stored size: 1.57 KB

Contents

$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "kojac/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "kojac"
  s.version     = Kojac::VERSION
  s.authors       = ["Gary McGhee"]
  s.email         = ["contact@buzzware.com.au"]
  s.homepage      = "https://github.com/buzzware/KOJAC"
  s.license       = "MIT"

  s.summary     = "KOJAC is an opinionated design and implementation for data management within Single Page Applications."
  s.description = "KOJAC is an opinionated design and implementation for data management within Single Page Applications. It relates most heavily to the client and data protocol. The server may continue the key/value style down to a key/value-style database if desired, but that is not necessary. KOJAC also supports standard REST-style servers."

  #s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
  s.files         = `git ls-files`.split($/)
  s.executables   = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ["lib"]
  
  s.add_dependency "underscore_plus"
  s.add_dependency "jquery-rails"
  s.add_dependency 'strong_parameters'

  s.add_development_dependency "rails", "~> 3.2"
  s.add_development_dependency "rspec-rails"
  s.add_development_dependency "canjs-rails"
  s.add_development_dependency "ember-rails"
  s.add_development_dependency "jquery-rails"
  s.add_development_dependency "capybara"
  s.add_development_dependency "sqlite3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kojac-0.9.1 kojac.gemspec