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 +4 -4
- data/Gemfile.lock +5 -5
- data/lib/roboparts/version.rb +1 -1
- data/spec/features/new_project_spec.rb +13 -0
- data/templates/Gemfile.erb +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00a23703b979b092f32dc2e132d0458fa2e30894
|
|
4
|
+
data.tar.gz: 70d02a1f95454a46a7629da81cc8aa2227c84a5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e84c92635099cdac5a7f92de4095a2a70d370626d5995cff200eb649c038f1d83517a7bb93804daaeab96138cc7f022ed17f31ad3806da94363f55cee4b63ce
|
|
7
|
+
data.tar.gz: 9523fd5a44f0745aee7f699cfb75e0a82beb1bf11b39d6fcf172231599efaf3aca706e6e4108a7f7e74d371e265973c650cd115243cfdb779f286c2ba846a35e
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
roboparts (0.
|
|
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.
|
|
49
|
-
json (1.8.
|
|
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.
|
|
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.
|
|
90
|
+
sprockets-rails (2.2.4)
|
|
91
91
|
actionpack (>= 3.0)
|
|
92
92
|
activesupport (>= 3.0)
|
|
93
93
|
sprockets (>= 2.8, < 4.0)
|
data/lib/roboparts/version.rb
CHANGED
|
@@ -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
|
data/templates/Gemfile.erb
CHANGED
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.
|
|
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
|