restpack_gem 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e1115b7c3acb1422eb204f33088cc23b9005a2f
4
- data.tar.gz: 21bd349dad7de9a78571f2c37869f1add83025f4
3
+ metadata.gz: 9b86b1a50ddd7e72d99196caf83946db10f04151
4
+ data.tar.gz: 9cade423a9f00ebc9db7c4b9b9c77786bcea144c
5
5
  SHA512:
6
- metadata.gz: 8ba69163668417bdbaf1bea7f022f2fd6aefc9f22b17e43a16d4138ef2639b85312516d96879ee43f8eb62013c75e310a9434360b017191277a4d5ffb66b47c8
7
- data.tar.gz: e62b0c2b7e4db475c7b82861dc19d484d7ac39d583961a09b4b07202d6c8a4616d62d5a6b8b967c3dec212ebc3d778f50f4886fc593987e6dee8f4f60610b1c8
6
+ metadata.gz: fdb4799371996e5c7209febe8dcd969c4ad1093bffc3bd4ca13a08f928d44864c6cec3397633eb917ec49ab354e4c6f37c41fecca4944ff4606e2e89e5dd89ed
7
+ data.tar.gz: 820ae0cb2dc02d66952c5b335f415079a2dac1e96a9551ecb8fa8e1fc4d1843ac54277c767de6a11bcfa6c9a20b9bd891f0a49ad7bd330a823b5bd5b24d9aef2
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
@@ -1,3 +1,5 @@
1
+ require "active_support/inflector"
2
+
1
3
  namespace :db do
2
4
  desc "Creates a new migration"
3
5
  task :new_migration, :name do |t, args|
@@ -1,5 +1,5 @@
1
1
  module RestPack
2
2
  module Gem
3
- VERSION = "0.0.11"
3
+ VERSION = "0.0.12"
4
4
  end
5
5
  end
@@ -0,0 +1,17 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # Require this file using `require "spec_helper"` to ensure that it is only
4
+ # loaded once.
5
+ #
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ RSpec.configure do |config|
8
+ config.treat_symbols_as_metadata_keys_with_true_values = true
9
+ config.run_all_when_everything_filtered = true
10
+ config.filter_run :focus
11
+
12
+ # Run specs in random order to surface order dependencies. If you find an
13
+ # order dependency and want to debug it, you can fix the order by providing
14
+ # the seed, which is printed after each run.
15
+ # --seed 1234
16
+ config.order = 'random'
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restpack_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Joyce
@@ -74,6 +74,7 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - .gitignore
77
+ - .rspec
77
78
  - Gemfile
78
79
  - LICENSE.txt
79
80
  - README.md
@@ -85,6 +86,7 @@ files:
85
86
  - lib/restpack_gem/tasks/rspec.rake
86
87
  - lib/restpack_gem/version.rb
87
88
  - restpack_gem.gemspec
89
+ - spec/spec_helper.rb
88
90
  homepage: https://github.com/RestPack
89
91
  licenses:
90
92
  - MIT
@@ -109,4 +111,5 @@ rubygems_version: 2.0.3
109
111
  signing_key:
110
112
  specification_version: 4
111
113
  summary: A base gem for all RestPack gems
112
- test_files: []
114
+ test_files:
115
+ - spec/spec_helper.rb