atomize 1.0.1 → 1.0.3

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
  SHA256:
3
- metadata.gz: b172c49e5bb4d20a9704165c9d55f8c5470b8b07aa4ad7963d9b5d274fe11692
4
- data.tar.gz: 86c7ad63b56582393398a5c892cfe990513ab1c78e381e27389af79cda7e022e
3
+ metadata.gz: 839c505dee4d4f88cdc4588575b08083273a98aa91e84bb76ff649d77b88472d
4
+ data.tar.gz: 14212baecb107515ae789a75343d9c5d744914ffec183cbb64b20ab0cc5a596a
5
5
  SHA512:
6
- metadata.gz: 846f2baafa600931d31d8d24353dbf32fded776258186e0586f8ea84ba13082ae9315335ffa6aa41d10245a961f12643bc8230b0c0c1c273d1ec497fc097d4de
7
- data.tar.gz: a857280b0f203c4f6b0005963a874987304141c3b26fcef2630d49671d77bb6f26623153e98cab5e0a2a946be4b73c270b9b82a9dadda214b6b4328f77b782f7
6
+ metadata.gz: 7093325cb1a810117ce9e25d1da7f249fbaa2e8cbbc559afc94d05f2b902402e8b4637df17be8e1cec848cdd345d55f393e054cf8d32424ec0039d6633efeced
7
+ data.tar.gz: 40acfb800cab195385dae1057e2d1b74b7960f4aa23565719c68c08b05350d07274d3961124b558d226126bd04a56c4e555081cc714e6fe490811416e48f194b
data/README.md CHANGED
@@ -17,6 +17,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
17
17
  ## Usage
18
18
 
19
19
  to install the atome development framework, just type : 'atomize install' in you shell
20
+ If you want to install and run the app, just type type : 'atomize install run ' in you shell
20
21
  it will create a directory named 'atome' and also install the atome gem
21
22
  Then refer to https://github.com/atomecorp/atome to use or develop the framework
22
23
 
data/exe/atomize CHANGED
@@ -2,14 +2,36 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  if ARGV.include?('install')
5
+
6
+ %x(git clone https://github.com/atomecorp/opal-browser.git )
7
+ Dir.chdir('opal-browser') do
8
+ `bundle update; bundle install`
9
+ `gem build opal-browser.gemspec`
10
+ `gem install opal-browser`
11
+ end
5
12
  %x(git clone https://github.com/atomecorp/atome.git )
6
13
  Dir.chdir('atome/vendor/assets/build/js/') do
7
14
  %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
15
+ Dir.chdir('../../../../test/test_app/build/') do
16
+
17
+ Dir.mkdir('js')
18
+
19
+ Dir.chdir('js/') do
20
+ %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
21
+ end
22
+ end
8
23
  Dir.chdir('../../../../') do
24
+ Dir.mkdir('thepoil')
9
25
  `bundle update; bundle install`
10
26
  `gem build atome.gemspec`
11
27
  `gem install atome`
12
- # ` rake test`
28
+
29
+ end
30
+ end
31
+ if ARGV.include?('run')
32
+ Dir.chdir('atome/') do
33
+ puts "the path for rake is" +`pwd`
34
+ `rake test`
13
35
  end
14
36
  end
15
37
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Atomize
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Eric Godard