parse-stack 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b38fa6b8bbbe4913023493342be2d72d1c14f57c
4
- data.tar.gz: a9aa594b35887afd223b775f8f842a3149ef5ab1
3
+ metadata.gz: 4856843747e0738dfacc551c1ca698da9702e3b4
4
+ data.tar.gz: 14a69ddbab421f837bf815931be17cbe3590e925
5
5
  SHA512:
6
- metadata.gz: d7eb6d9ee361c9cf988a0bd11c34988b91a55866d36f0bc246ff24d2bad6989f025951b871841bbee2fcb2f585673a84f03129ffa2f6b4eed06d380a25ef7dee
7
- data.tar.gz: a81733fd6f44fc451c1b9d856903fc3640f0d099b3d659f4f1c1c91bc96c9e48f652add587a84bbf76e046ffb93f4a84ba1ab07e2c5fb5923ed211883afc166a
6
+ metadata.gz: 95b5c8ef099df283ec819f014242e5e5c12c03edfaed01e41a57b07e1b579a4311a8d2cb19b63a8b6f49e86cc0205945554c971e115b5c82de3ea32373db6e22
7
+ data.tar.gz: 273ce3c580e856a2c7e92deabad9a52fdfb6e53311ccc1a54415ba01d7f718387859d67086600eeaa9751b6e02d75db025ea6c3b52e1f246a7f0226813b6fb94
@@ -0,0 +1,37 @@
1
+ .DS_Store
2
+ *.gem
3
+ *.rbc
4
+ /.config
5
+ /coverage/
6
+ /InstalledFiles
7
+ /pkg/
8
+ /spec/reports/
9
+ /spec/examples.txt
10
+ /test/tmp/
11
+ /test/version_tmp/
12
+ /tmp/
13
+
14
+ ## Specific to RubyMotion:
15
+ .dat*
16
+ .repl_history
17
+ build/
18
+
19
+ ## Documentation cache and generated files:
20
+ /.yardoc/
21
+ /_yardoc/
22
+ /doc/
23
+ /rdoc/
24
+
25
+ ## Environment normalization:
26
+ /.bundle/
27
+ /vendor/bundle
28
+ /lib/bundler/man/
29
+
30
+ # for a library or gem, you might want to ignore these files since the code is
31
+ # intended to run in multiple environments; otherwise, check them in:
32
+ # Gemfile.lock
33
+ # .ruby-version
34
+ # .ruby-gemset
35
+
36
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
37
+ .rvmrc
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.6
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- parse-stack (1.0.0)
4
+ parse-stack (1.0.1)
5
5
  active_model_serializers (>= 0.9, < 1)
6
6
  activemodel (>= 4, < 5)
7
7
  activesupport (>= 4, < 5)
@@ -39,7 +39,7 @@ GEM
39
39
  json (1.8.3)
40
40
  method_source (0.8.2)
41
41
  minitest (5.8.4)
42
- moneta (0.7.20)
42
+ moneta (0.8.0)
43
43
  multipart-post (2.0.0)
44
44
  parallel (1.6.1)
45
45
  pry (0.10.3)
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2016 Anthony Persaud
1
+ Copyright (c) 2014-2016 Anthony Persaud, Modernistik LLC
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -1,5 +1,5 @@
1
1
  module Parse
2
2
  module Stack
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -9,10 +9,10 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Anthony Persaud"]
10
10
  spec.email = ["persaud@modernistik.com"]
11
11
 
12
- spec.summary = %q{Ruby Parse SDK Client and Object Relational Mapping stack}
12
+ spec.summary = %q{Parse Ruby Client SDK and Object Relational Mapping stack}
13
13
  spec.description = %q{A Parse Ruby Client, ORM, and Query engine to manage larger scale Parse applications}
14
14
  spec.homepage = "https://github.com/modernistik/parse-stack"
15
- spec.license = "Nonstandard"
15
+ spec.license = "MIT"
16
16
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
17
  # delete this section to allow pushing this gem to any host.
18
18
  # if spec.respond_to?(:metadata)
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
22
22
  # end
23
23
 
24
- spec.files = Dir.glob("**/*").reject { |f| f.match(%r{^(test|spec|features)/} ) || f.match(%r{\.gem$}) } # `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
25
  spec.bindir = "exe"
26
26
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
27
  spec.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parse-stack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Persaud
@@ -256,6 +256,8 @@ executables: []
256
256
  extensions: []
257
257
  extra_rdoc_files: []
258
258
  files:
259
+ - ".gitignore"
260
+ - ".travis.yml"
259
261
  - Gemfile
260
262
  - Gemfile.lock
261
263
  - LICENSE
@@ -315,7 +317,7 @@ files:
315
317
  - parse-stack.gemspec
316
318
  homepage: https://github.com/modernistik/parse-stack
317
319
  licenses:
318
- - Nonstandard
320
+ - MIT
319
321
  metadata: {}
320
322
  post_install_message:
321
323
  rdoc_options: []
@@ -336,5 +338,5 @@ rubyforge_project:
336
338
  rubygems_version: 2.5.1
337
339
  signing_key:
338
340
  specification_version: 4
339
- summary: Ruby Parse SDK Client and Object Relational Mapping stack
341
+ summary: Parse Ruby Client SDK and Object Relational Mapping stack
340
342
  test_files: []