origen_app_generators 0.2.0 → 0.2.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: 3267cade6967ba2fa712fb084cd0660b34ee61fe
4
- data.tar.gz: 2c99338c64db4b6a59af834dd1525d79f3ffa8be
3
+ metadata.gz: e3cda530159092b62b2ae0249bbc4906a742497e
4
+ data.tar.gz: c881d58d855edcc46b55eb3e731b8ebaf74e0709
5
5
  SHA512:
6
- metadata.gz: 284643c48009e92e6782ec77d4efdf0320ea40b54e20926ade478e6f03b29e961bd8e22145c1829153a96379af602fa3fd7f89d0cc9a5cbe5d2e297249d59e82
7
- data.tar.gz: ec620150afb77da7dec26efde4eba7a498acb0298a5147e5efec3cabb43addc35fb9ef200f56ccbaec11c667a0d68c941857a4366412b40aa59592a6da88c0fb
6
+ metadata.gz: 1ba2c581f3de522406dc430fd3a9df96f959c5c5c461d186eecbd3fa1b92a0026ac8c732905b101ba354338e91a8d37f42a7e64dfedeba40a1e21ad479fb1717
7
+ data.tar.gz: f9715b9ecc9e562772fcf8fa6119bf8fe8fe08c876c29c3642bd50490aa0c8f0796a9021a478fd543b74a04580a19c526117fb104f17178f73cf6f347443a794
data/config/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module OrigenAppGenerators
2
2
  MAJOR = 0
3
3
  MINOR = 2
4
- BUGFIX = 0
4
+ BUGFIX = 1
5
5
  DEV = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -0,0 +1,35 @@
1
+ # Misc
2
+ .irb_history
3
+
4
+ # Editor cruft
5
+ *.swp
6
+ *.swo
7
+ *~
8
+
9
+ # Origen local files
10
+ /.bundle
11
+ /target/.default
12
+ /environment/.default
13
+ /release_note.txt
14
+ /pkg
15
+ /lbin
16
+ /.bin
17
+ /list/referenced.list
18
+ /tags
19
+ /.ref
20
+ /.ws
21
+ /.lsf
22
+ /.db
23
+ /log
24
+ /output
25
+ /web
26
+ /coverage
27
+ /.ref
28
+ /.yardoc
29
+ /.collection
30
+ /.bin
31
+ /.session
32
+
33
+ # Cruft from other revision control systems
34
+ .SYNC
35
+ .svn
@@ -0,0 +1,9 @@
1
+ $VERBOSE=nil
2
+ require 'pp'
3
+ require 'rubygems'
4
+ require 'irb/completion'
5
+ require 'irb/ext/save-history'
6
+
7
+ IRB.conf[:SAVE_HISTORY] = 100
8
+ IRB.conf[:AUTO_INDENT] = true
9
+ IRB.conf[:IRB_NAME] = "origen"
@@ -0,0 +1 @@
1
+ --color -f doc
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - 2.2.2
5
+ script:
6
+ - bundle exec origen -v
7
+ - bundle exec origen specs
8
+ - bundle exec origen examples
9
+ - bundle exec origen web compile --no-serve
10
+ env:
11
+ - ORIGEN_GEM_USE_FROM_SYSTEM=false ORIGEN_GEM_MANAGE_BUNDLER=false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen_app_generators
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty
@@ -49,6 +49,10 @@ files:
49
49
  - lib/tasks/app_generators.rake
50
50
  - lib/tasks/boot.rb
51
51
  - lib/tasks/new_app_tests.rake
52
+ - templates/app_generators/application/.gitignore
53
+ - templates/app_generators/application/.irbrc
54
+ - templates/app_generators/application/.rspec
55
+ - templates/app_generators/application/.travis.yml
52
56
  - templates/app_generators/application/Gemfile
53
57
  - templates/app_generators/application/Rakefile
54
58
  - templates/app_generators/application/config/application.rb