cinder 0.5.3 → 0.5.4
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.
- data/.ruby-version +1 -0
- data/README.md +23 -10
- data/bin/cinder +2 -2
- data/cinder.gemspec +2 -2
- data/lib/cinder/commands/lint.rb +1 -1
- data/lib/cinder/version.rb +1 -1
- metadata +7 -6
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.9.3
|
data/README.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
Cinder
|
2
|
-
========
|
1
|
+
# Cinder [](https://gemnasium.com/CinderCI/cinder) [](https://codeclimate.com/github/CinderCI/cinder)
|
3
2
|
|
4
3
|
Continuous Delivery for iOS Apps.
|
5
4
|
|
@@ -17,8 +16,7 @@ iOS projects using Cinder:
|
|
17
16
|
|
18
17
|
Items in <span style="color:#999">de-emphasized text</span> are still being developed.
|
19
18
|
|
20
|
-
Usage
|
21
|
-
-----
|
19
|
+
## Usage
|
22
20
|
|
23
21
|
* `script/setup` - run this after cloning a project and you're ready to develop in Xcode. Re-run it whenever project dependencies have changed.
|
24
22
|
|
@@ -30,8 +28,7 @@ Usage
|
|
30
28
|
* `bin/cinder lint` - will guide you through setting up a new project or modifying an existing project to work with Cinder.
|
31
29
|
|
32
30
|
|
33
|
-
New Project Quickstart
|
34
|
-
----------------------
|
31
|
+
## New Project Quickstart
|
35
32
|
|
36
33
|
In the top-level of your project run:
|
37
34
|
|
@@ -41,8 +38,7 @@ This is a one-time initialization that only one developer must complete. Afterwa
|
|
41
38
|
|
42
39
|
script/setup
|
43
40
|
|
44
|
-
Installation for Existing Projects
|
45
|
-
----------------------------------
|
41
|
+
## Installation for Existing Projects
|
46
42
|
|
47
43
|
If your project doesn't use Bundler (e.g. doesn't have a `Gemfile`) then follow **New Project Quickstart** above.
|
48
44
|
|
@@ -65,11 +61,28 @@ The `cinder` CLI should now be available under `bin/`. It will guide you the res
|
|
65
61
|
# 20 bin/cinder lint
|
66
62
|
# 30 if errors GOTO 10
|
67
63
|
|
68
|
-
Cinder is Opinionated
|
69
|
-
-----------------------
|
64
|
+
## Cinder is Opinionated
|
70
65
|
|
71
66
|
* Ruby is an integral part of the development, build, and
|
72
67
|
release toolchain for native iOS apps
|
73
68
|
* Ruby versions are managed by [rbenv](https://github.com/sstephenson/rbenv)
|
74
69
|
* Automation always wins
|
75
70
|
* Convention over configuration; when there's more than one way to do it, pick one
|
71
|
+
|
72
|
+
## Contributing
|
73
|
+
|
74
|
+
1. Fork it
|
75
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
76
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
77
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
78
|
+
5. Create new Pull Request
|
79
|
+
|
80
|
+
## Credits
|
81
|
+
|
82
|
+
Cinder is built and maintained at [Detroit Labs](http://detroitlabs.com) by [Tim Taylor](http://github.com/toolbear) and [Nate West](http://github.com/nwest).
|
83
|
+
|
84
|
+

|
85
|
+
|
86
|
+
## License
|
87
|
+
|
88
|
+
Cinder is released under the [MIT](http://opensource.org/licenses/MIT) license.
|
data/bin/cinder
CHANGED
@@ -10,8 +10,8 @@ HighLine.track_eof = false # Fix for built-in Ruby
|
|
10
10
|
program :version, Cinder::VERSION
|
11
11
|
program :description, 'Continuous Delivery for iOS Apps'
|
12
12
|
|
13
|
-
program :help, '
|
14
|
-
program :help, 'Website', 'https://github.com/
|
13
|
+
program :help, 'Authors', 'Tim Taylor <tim@detroitlabs.com>, Nate West <nwest@detroitlabs.com>'
|
14
|
+
program :help, 'Website', 'https://github.com/CinderCI/cinder'
|
15
15
|
program :help_formatter, :compact
|
16
16
|
|
17
17
|
default_command :help
|
data/cinder.gemspec
CHANGED
@@ -23,7 +23,7 @@ desc
|
|
23
23
|
s.add_dependency "commander", "~> 4.1.3"
|
24
24
|
s.add_dependency "extlib", "~> 0.9.16"
|
25
25
|
s.add_dependency "plist", "~> 3.1.0"
|
26
|
-
s.add_dependency "dotenv", "~> 0.
|
26
|
+
s.add_dependency "dotenv", "~> 0.7.0"
|
27
27
|
s.add_dependency "cocoapods", "~> 0.19.0"
|
28
28
|
s.add_dependency "shenzhen", "~> 0.3.0"
|
29
29
|
s.add_dependency "rugged", "~> 0.16.0"
|
@@ -31,7 +31,7 @@ desc
|
|
31
31
|
s.add_development_dependency "bundler", "~> 1.3"
|
32
32
|
s.add_development_dependency "rake"
|
33
33
|
s.add_development_dependency 'rspec'
|
34
|
-
s.add_development_dependency 'fakefs', '~> 0.
|
34
|
+
s.add_development_dependency 'fakefs', '~> 0.4.2'
|
35
35
|
|
36
36
|
s.files = `git ls-files`.split($/)
|
37
37
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
data/lib/cinder/commands/lint.rb
CHANGED
@@ -73,7 +73,7 @@ module Cinder
|
|
73
73
|
4. Create `setup` and `build` scripts
|
74
74
|
|
75
75
|
mkdir -p script
|
76
|
-
curl -L
|
76
|
+
curl -L https://raw.github.com/CinderCI/cinder/exec >script/.cinder-exec
|
77
77
|
( cd script ; \\
|
78
78
|
chmod +x .cinder-exec ; \\
|
79
79
|
ln -s .cinder-exec setup ; \\
|
data/lib/cinder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cinder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-05-
|
13
|
+
date: 2013-05-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: commander
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
requirements:
|
68
68
|
- - ~>
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.
|
70
|
+
version: 0.7.0
|
71
71
|
type: :runtime
|
72
72
|
prerelease: false
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
requirements:
|
76
76
|
- - ~>
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version: 0.
|
78
|
+
version: 0.7.0
|
79
79
|
- !ruby/object:Gem::Dependency
|
80
80
|
name: cocoapods
|
81
81
|
requirement: !ruby/object:Gem::Requirement
|
@@ -179,7 +179,7 @@ dependencies:
|
|
179
179
|
requirements:
|
180
180
|
- - ~>
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version: 0.
|
182
|
+
version: 0.4.2
|
183
183
|
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -187,7 +187,7 @@ dependencies:
|
|
187
187
|
requirements:
|
188
188
|
- - ~>
|
189
189
|
- !ruby/object:Gem::Version
|
190
|
-
version: 0.
|
190
|
+
version: 0.4.2
|
191
191
|
description: ! "Cinder does the heavy lifting for building and distributing \niOS
|
192
192
|
applications in a continuous integration environment.\n"
|
193
193
|
email:
|
@@ -199,6 +199,7 @@ extensions: []
|
|
199
199
|
extra_rdoc_files: []
|
200
200
|
files:
|
201
201
|
- .gitignore
|
202
|
+
- .ruby-version
|
202
203
|
- Gemfile
|
203
204
|
- LICENSE.txt
|
204
205
|
- README.md
|