roboparts 0.6.0 → 0.6.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: 9ef9f61be48e2e433742758f508a486a06c15117
4
- data.tar.gz: 5222ad8ec73607c11cc48b0d60f49a15e71bc460
3
+ metadata.gz: 00a23703b979b092f32dc2e132d0458fa2e30894
4
+ data.tar.gz: 70d02a1f95454a46a7629da81cc8aa2227c84a5f
5
5
  SHA512:
6
- metadata.gz: 31d09fa72833c2749d846abd563710e4d8b02a6c272f24b2950bc731ce27f4eef2381e5fa8998dc9ef4b12b9447b288a3c01126dffc65e6e0ee78bf88fc02551
7
- data.tar.gz: cc72d10935fabdf0b9d5805f862d2d08b560891f4db07e93d9c943d9ff5a158dcec91db5d5541ca61dd5fb5d33a45895b084cf37b6ace52720e7aa568d8dbb76
6
+ metadata.gz: 9e84c92635099cdac5a7f92de4095a2a70d370626d5995cff200eb649c038f1d83517a7bb93804daaeab96138cc7f022ed17f31ad3806da94363f55cee4b63ce
7
+ data.tar.gz: 9523fd5a44f0745aee7f699cfb75e0a82beb1bf11b39d6fcf172231599efaf3aca706e6e4108a7f7e74d371e265973c650cd115243cfdb779f286c2ba846a35e
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- roboparts (0.0.1)
4
+ roboparts (0.6.1)
5
5
  bundler (~> 1.3)
6
6
  rails (= 4.1.8)
7
7
 
@@ -45,13 +45,13 @@ GEM
45
45
  diff-lcs (1.2.5)
46
46
  erubis (2.7.0)
47
47
  hike (1.2.3)
48
- i18n (0.6.11)
49
- json (1.8.1)
48
+ i18n (0.7.0)
49
+ json (1.8.2)
50
50
  mail (2.6.3)
51
51
  mime-types (>= 1.16, < 3)
52
52
  mime-types (2.4.3)
53
53
  mini_portile (0.6.1)
54
- minitest (5.4.3)
54
+ minitest (5.5.1)
55
55
  multi_json (1.10.1)
56
56
  nokogiri (1.6.5)
57
57
  mini_portile (~> 0.6.0)
@@ -87,7 +87,7 @@ GEM
87
87
  multi_json (~> 1.0)
88
88
  rack (~> 1.0)
89
89
  tilt (~> 1.1, != 1.3.0)
90
- sprockets-rails (2.2.2)
90
+ sprockets-rails (2.2.4)
91
91
  actionpack (>= 3.0)
92
92
  activesupport (>= 3.0)
93
93
  sprockets (>= 2.8, < 4.0)
@@ -1,5 +1,5 @@
1
1
  module Roboparts
2
2
  RAILS_VERSION = "4.1.8"
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = "0.6.0"
4
+ VERSION = "0.6.1"
5
5
  end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ feature 'Create a new project with default configuration' do
4
+ scenario 'specs pass' do
5
+ run_roboparts
6
+
7
+ Dir.chdir(project_path) do
8
+ Bundler.with_clean_env do
9
+ expect(`rake`).to include('0 failures')
10
+ end
11
+ end
12
+ end
13
+ end
@@ -38,4 +38,5 @@ group :test do
38
38
  gem "database_cleaner"
39
39
  gem "shoulda-matchers"
40
40
  gem "timecop"
41
+ gem "webmock"
41
42
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roboparts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Strunk
@@ -99,6 +99,7 @@ files:
99
99
  - roboparts.gemspec
100
100
  - spec/fakes/bin/hub
101
101
  - spec/features/github_spec.rb
102
+ - spec/features/new_project_spec.rb
102
103
  - spec/spec_helper.rb
103
104
  - spec/support/fake_github.rb
104
105
  - spec/support/roboparts.rb